Browse Source

Remove erroneous trailing semicolon.

Manuel Novoa III 20 years ago
parent
commit
9c071de3cf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libc/sysdeps/linux/common/bits/uClibc_stdio.h

+ 1 - 1
libc/sysdeps/linux/common/bits/uClibc_stdio.h

@@ -435,7 +435,7 @@ extern int _cs_close(void *cookie);
 							? (*(stream)->bufpos++) = (c) \
 							: fputc_unlocked((c),(stream)) )
 #else  /* __STDIO_PUTC_MACRO */
-#define __PUTC(c, stream)	fputc_unlocked(c, stream);
+#define __PUTC(c, stream)	fputc_unlocked(c, stream)
 #endif /* __STDIO_PUTC_MACRO */