Index: uspace/lib/c/generic/device/hw_res_parsed.c
===================================================================
--- uspace/lib/c/generic/device/hw_res_parsed.c	(revision 850fd32a6ced0b28470d7b2100d44accba1dce89)
+++ uspace/lib/c/generic/device/hw_res_parsed.c	(revision f3d47c976431122cd3b0844f80937c7fdb899b40)
@@ -167,5 +167,5 @@
 			size_t s_size;
 
-			s_address = RNGABS(out->mem_ranges.ranges[i]);;
+			s_address = RNGABS(out->mem_ranges.ranges[i]);
 			s_size = RNGSZ(out->mem_ranges.ranges[i]);
 
@@ -237,5 +237,5 @@
 
 	return EOK;
-};
+}
 
 /** Get hw_resources from the parent device.
@@ -279,5 +279,5 @@
 
 	return rc;
-};
+}
 
 /** @}
Index: uspace/lib/c/generic/io/printf_core.c
===================================================================
--- uspace/lib/c/generic/io/printf_core.c	(revision 850fd32a6ced0b28470d7b2100d44accba1dce89)
+++ uspace/lib/c/generic/io/printf_core.c	(revision f3d47c976431122cd3b0844f80937c7fdb899b40)
@@ -1517,5 +1517,5 @@
 				counter += retval;
 				j = nxt;
-				goto next_char;
+				continue;
 			case 'c':
 				if (qualifier == PrintfQualifierLong)
@@ -1527,9 +1527,9 @@
 					counter = -counter;
 					goto out;
-				};
+				}
 
 				counter += retval;
 				j = nxt;
-				goto next_char;
+				continue;
 
 			/*
@@ -1552,5 +1552,5 @@
 				counter += retval;
 				j = nxt;
-				goto next_char;
+				continue;
 
 			/*
@@ -1589,5 +1589,5 @@
 			case '%':
 				j = i;
-				goto next_char;
+				continue;
 
 			/*
@@ -1599,5 +1599,5 @@
 				 * so we will print whole bad format sequence.
 				 */
-				goto next_char;
+				continue;
 			}
 
@@ -1655,6 +1655,4 @@
 			j = nxt;
 		}
-next_char:
-		;
 	}
 
