]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-05-04 Vladimir Serbinenko <phcoder@gmail.com>
authorphcoder <phcoder@localhost>
Mon, 4 May 2009 18:06:37 +0000 (18:06 +0000)
committerphcoder <phcoder@localhost>
Mon, 4 May 2009 18:06:37 +0000 (18:06 +0000)
Removed wrong semicolon in declaration

* grub/misc.h (grub_dprintf): remove semicolon

ChangeLog
include/grub/misc.h

index af6a735ee558ed5ea13228e89f85663aba543fe8..963c84ce2771f0e9e4691ed78aae1286d41d0001 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-05-04  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       Removed wrong semicolon in declaration
+
+       * grub/misc.h (grub_dprintf): remove semicolon
+
 2009-05-04  Robert Millan  <rmh.grub@aybabtu.com>
 
        * loader/i386/linux.c (GRUB_ASSUME_LINUX_HAS_FB_SUPPORT): New macro.
index 3490db0d566d8de94bb517123b7f0de81f517089..5c8baa1aa55d1071d45cf2c31b3e882987dc9b2b 100644 (file)
@@ -28,7 +28,7 @@
 #define ALIGN_UP(addr, align) (((grub_uint64_t)addr + align - 1) & ~(align - 1))
 #define ARRAY_SIZE(array) (sizeof (array) / sizeof (array[0]))
 
-#define grub_dprintf(condition, fmt, args...) grub_real_dprintf(__FILE__, __LINE__, condition, fmt, ## args);
+#define grub_dprintf(condition, fmt, args...) grub_real_dprintf(__FILE__, __LINE__, condition, fmt, ## args)
 /* XXX: If grub_memmove is too slow, we must implement grub_memcpy.  */
 #define grub_memcpy(d,s,n)     grub_memmove ((d), (s), (n))