Index: uspace/lib/posix/fnmatch.c
===================================================================
--- uspace/lib/posix/fnmatch.c	(revision 49160c495c7d0b51d0095c20da4f368f59382c0e)
+++ uspace/lib/posix/fnmatch.c	(revision 2aadf2b583c5b7bd65f939f41f832a34d7050d8a)
@@ -496,5 +496,5 @@
 			end = string;
 		} else {
-			end= strchrnul(string, pathname ? '/' : '\0');
+			end = strchrnul(string, pathname ? '/' : '\0');
 		}
 
Index: uspace/lib/posix/signal.c
===================================================================
--- uspace/lib/posix/signal.c	(revision 49160c495c7d0b51d0095c20da4f368f59382c0e)
+++ uspace/lib/posix/signal.c	(revision 2aadf2b583c5b7bd65f939f41f832a34d7050d8a)
@@ -312,5 +312,5 @@
 	if ((action.sa_flags & SA_RESETHAND) && signo != SIGILL && signo != SIGTRAP) {
 		_signal_actions[signo] = (struct posix_sigaction) DEFAULT_HANDLER;
-	};
+	}
 
 	if (action.sa_flags & SA_SIGINFO) {
Index: uspace/lib/posix/time.c
===================================================================
--- uspace/lib/posix/time.c	(revision 49160c495c7d0b51d0095c20da4f368f59382c0e)
+++ uspace/lib/posix/time.c	(revision 2aadf2b583c5b7bd65f939f41f832a34d7050d8a)
@@ -329,5 +329,5 @@
 		return tm->tm_year - 1;
 	}
-	if (day > 364 + _is_leap_year(tm->tm_year)){
+	if (day > 364 + _is_leap_year(tm->tm_year)) {
 		/* First week of next year. */
 		return tm->tm_year + 1;
@@ -368,5 +368,5 @@
 		return 53;
 	}
-	if (day > 364 + _is_leap_year(tm->tm_year)){
+	if (day > 364 + _is_leap_year(tm->tm_year)) {
 		/* First week of next year. */
 		return 1;
