Author: hpoussin Date: Fri Jan 11 14:35:09 2008 New Revision: 31712
URL: http://svn.reactos.org/svn/reactos?rev=31712&view=rev Log: Use same UNIMPLEMENTED macro syntax as in other parts
Modified: trunk/reactos/boot/freeldr/freeldr/arch/i386/pcvideo.c trunk/reactos/boot/freeldr/freeldr/include/debug.h
Modified: trunk/reactos/boot/freeldr/freeldr/arch/i386/pcvideo.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/arch/i... ============================================================================== --- trunk/reactos/boot/freeldr/freeldr/arch/i386/pcvideo.c (original) +++ trunk/reactos/boot/freeldr/freeldr/arch/i386/pcvideo.c Fri Jan 11 14:35:09 2008 @@ -1030,7 +1030,7 @@ /* BIOS graphics mode */ else { - UNIMPLEMENTED(); + UNIMPLEMENTED; } }
Modified: trunk/reactos/boot/freeldr/freeldr/include/debug.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/includ... ============================================================================== --- trunk/reactos/boot/freeldr/freeldr/include/debug.h (original) +++ trunk/reactos/boot/freeldr/freeldr/include/debug.h Fri Jan 11 14:35:09 2008 @@ -85,6 +85,6 @@
#endif // defined DBG
-#define UNIMPLEMENTED() BugCheck((DPRINT_WARNING, "This function is unimplemented!\n")) +#define UNIMPLEMENTED BugCheck((DPRINT_WARNING, "This function is unimplemented!\n"))
#endif // defined __DEBUG_H