Index: uspace/app/sbi/src/bigint.c
===================================================================
--- uspace/app/sbi/src/bigint.c	(revision f47c2dc1dbaada74870807f3cccd5bee0e6b69ff)
+++ uspace/app/sbi/src/bigint.c	(revision 0a520dbcbe002e3bee1e5237bae6dd02ac81b717)
@@ -379,5 +379,5 @@
 	printf("Convert bigint to string.\n");
 #endif
-	static_assert(BIGINT_BASE >= 10);
+	static_assert(BIGINT_BASE >= 10, "");
 
 	/* Compute number of characters. */
Index: uspace/drv/bus/usb/ehci/hw_struct/transfer_descriptor.h
===================================================================
--- uspace/drv/bus/usb/ehci/hw_struct/transfer_descriptor.h	(revision f47c2dc1dbaada74870807f3cccd5bee0e6b69ff)
+++ uspace/drv/bus/usb/ehci/hw_struct/transfer_descriptor.h	(revision 0a520dbcbe002e3bee1e5237bae6dd02ac81b717)
@@ -88,5 +88,5 @@
 #define TD_BUFFER_POINTER_OFFSET_MASK    0xfff
 
-static_assert(sizeof(td_t) % 32 == 0);
+static_assert(sizeof(td_t) % 32 == 0, "");
 
 static inline bool td_active(const td_t *td)
Index: uspace/drv/bus/usb/ohci/hw_struct/hcca.h
===================================================================
--- uspace/drv/bus/usb/ohci/hw_struct/hcca.h	(revision f47c2dc1dbaada74870807f3cccd5bee0e6b69ff)
+++ uspace/drv/bus/usb/ohci/hw_struct/hcca.h	(revision 0a520dbcbe002e3bee1e5237bae6dd02ac81b717)
@@ -61,5 +61,5 @@
 } hcca_t;
 
-static_assert(sizeof(hcca_t) == 256);
+static_assert(sizeof(hcca_t) == 256, "");
 
 /** Allocate properly aligned structure.
Index: uspace/drv/bus/usb/uhci/uhci_batch.c
===================================================================
--- uspace/drv/bus/usb/uhci/uhci_batch.c	(revision f47c2dc1dbaada74870807f3cccd5bee0e6b69ff)
+++ uspace/drv/bus/usb/uhci/uhci_batch.c	(revision 0a520dbcbe002e3bee1e5237bae6dd02ac81b717)
@@ -96,5 +96,5 @@
 int uhci_transfer_batch_prepare(uhci_transfer_batch_t *uhci_batch)
 {
-	static_assert((sizeof(td_t) % 16) == 0);
+	static_assert((sizeof(td_t) % 16) == 0, "");
 
 	usb_transfer_batch_t *usb_batch = &uhci_batch->base;
Index: uspace/drv/bus/usb/xhci/trb_ring.c
===================================================================
--- uspace/drv/bus/usb/xhci/trb_ring.c	(revision f47c2dc1dbaada74870807f3cccd5bee0e6b69ff)
+++ uspace/drv/bus/usb/xhci/trb_ring.c	(revision 0a520dbcbe002e3bee1e5237bae6dd02ac81b717)
@@ -53,5 +53,5 @@
 } __attribute__((aligned(PAGE_SIZE)));
 
-static_assert(sizeof(trb_segment_t) == PAGE_SIZE);
+static_assert(sizeof(trb_segment_t) == PAGE_SIZE, "");
 
 /**
Index: uspace/lib/c/generic/double_to_str.c
===================================================================
--- uspace/lib/c/generic/double_to_str.c	(revision f47c2dc1dbaada74870807f3cccd5bee0e6b69ff)
+++ uspace/lib/c/generic/double_to_str.c	(revision 0a520dbcbe002e3bee1e5237bae6dd02ac81b717)
@@ -503,5 +503,5 @@
 {
 	/* The whole computation assumes 64bit significand. */
-	static_assert(sizeof(ieee_val.pos_val.significand) == sizeof(uint64_t));
+	static_assert(sizeof(ieee_val.pos_val.significand) == sizeof(uint64_t), "");
 
 	if (ieee_val.is_special) {
@@ -754,5 +754,5 @@
 {
 	/* The whole computation assumes 64bit significand. */
-	static_assert(sizeof(ieee_val.pos_val.significand) == sizeof(uint64_t));
+	static_assert(sizeof(ieee_val.pos_val.significand) == sizeof(uint64_t), "");
 
 	if (ieee_val.is_special) {
Index: uspace/lib/c/generic/ieee_double.c
===================================================================
--- uspace/lib/c/generic/ieee_double.c	(revision f47c2dc1dbaada74870807f3cccd5bee0e6b69ff)
+++ uspace/lib/c/generic/ieee_double.c	(revision 0a520dbcbe002e3bee1e5237bae6dd02ac81b717)
@@ -45,5 +45,5 @@
 	const int exponent_bias = 1075;
 
-	static_assert(sizeof(val) == sizeof(uint64_t));
+	static_assert(sizeof(val) == sizeof(uint64_t), "");
 
 	union {
Index: uspace/lib/c/generic/time.c
===================================================================
--- uspace/lib/c/generic/time.c	(revision f47c2dc1dbaada74870807f3cccd5bee0e6b69ff)
+++ uspace/lib/c/generic/time.c	(revision 0a520dbcbe002e3bee1e5237bae6dd02ac81b717)
@@ -79,5 +79,5 @@
 clock_t clock(void)
 {
-	static_assert(CLOCKS_PER_SEC == 1000000);
+	static_assert(CLOCKS_PER_SEC == 1000000, "");
 
 	size_t count;
Index: uspace/lib/c/include/assert.h
===================================================================
--- uspace/lib/c/include/assert.h	(revision f47c2dc1dbaada74870807f3cccd5bee0e6b69ff)
+++ uspace/lib/c/include/assert.h	(revision 0a520dbcbe002e3bee1e5237bae6dd02ac81b717)
@@ -42,5 +42,5 @@
 
 #ifndef __cplusplus
-#define static_assert(expr)	_Static_assert(expr, "")
+#define static_assert _Static_assert
 #endif
 
Index: uspace/lib/usb/include/usb/request.h
===================================================================
--- uspace/lib/usb/include/usb/request.h	(revision f47c2dc1dbaada74870807f3cccd5bee0e6b69ff)
+++ uspace/lib/usb/include/usb/request.h	(revision 0a520dbcbe002e3bee1e5237bae6dd02ac81b717)
@@ -117,5 +117,5 @@
 } __attribute__((packed)) usb_device_request_setup_packet_t;
 
-static_assert(sizeof(usb_device_request_setup_packet_t) == USB_SETUP_PACKET_SIZE);
+static_assert(sizeof(usb_device_request_setup_packet_t) == USB_SETUP_PACKET_SIZE, "");
 
 #define GET_DEVICE_DESC(size) \
Index: uspace/lib/usbdev/src/request.c
===================================================================
--- uspace/lib/usbdev/src/request.c	(revision f47c2dc1dbaada74870807f3cccd5bee0e6b69ff)
+++ uspace/lib/usbdev/src/request.c	(revision 0a520dbcbe002e3bee1e5237bae6dd02ac81b717)
@@ -45,5 +45,5 @@
 #define MAX_DATA_LENGTH ((size_t)(0xFFFF))
 
-static_assert(sizeof(usb_device_request_setup_packet_t) == 8);
+static_assert(sizeof(usb_device_request_setup_packet_t) == 8, "");
 
 /** Generic wrapper for SET requests using standard control request format.
Index: uspace/srv/locsrv/locsrv.c
===================================================================
--- uspace/srv/locsrv/locsrv.c	(revision f47c2dc1dbaada74870807f3cccd5bee0e6b69ff)
+++ uspace/srv/locsrv/locsrv.c	(revision 0a520dbcbe002e3bee1e5237bae6dd02ac81b717)
@@ -1409,5 +1409,5 @@
 	 */
 	static_assert((INTERFACE_LOC_SUPPLIER & IFACE_EXCHANGE_MASK) ==
-	    IFACE_EXCHANGE_SERIALIZE);
+	    IFACE_EXCHANGE_SERIALIZE, "");
 
 	loc_server_t *server = loc_server_register();
Index: uspace/srv/net/inetsrv/pdu.c
===================================================================
--- uspace/srv/net/inetsrv/pdu.c	(revision f47c2dc1dbaada74870807f3cccd5bee0e6b69ff)
+++ uspace/srv/net/inetsrv/pdu.c	(revision 0a520dbcbe002e3bee1e5237bae6dd02ac81b717)
@@ -224,5 +224,5 @@
 		return EINVAL;
 
-	static_assert(sizeof(ip6_header_t) % 8 == 0);
+	static_assert(sizeof(ip6_header_t) % 8 == 0, "");
 	assert(hdr_size % 8 == 0);
 	assert(offs % FRAG_OFFS_UNIT == 0);
