This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

boehm-gc patch for de_win.c


This patch removes a semicolon that prematurely terminates an 'if'
statement.

-Fred

2003-02-05  Fred Fish  <fnf@intrinsity.com>

	* cord/de_win.c (WndProc): Remove semicolon before 'if'
	substatement.
 
Index: cord/de_win.c
===================================================================
RCS file: /cvs/gcc/gcc/boehm-gc/cord/de_win.c,v
retrieving revision 1.2
diff -c -p -r1.2 de_win.c
*** cord/de_win.c	17 Aug 2001 18:30:48 -0000	1.2
--- cord/de_win.c	5 Feb 2003 16:41:43 -0000
*************** LRESULT CALLBACK WndProc (HWND hwnd, UIN
*** 249,255 ****
  
                 case IDM_HELPABOUT:
                    if( DialogBox( hInstance, "ABOUTBOX",
!                                  hwnd, lpfnAboutBox ) );
                       InvalidateRect( hwnd, NULL, TRUE );
                    return( 0 );
  	       case IDM_HELPCONTENTS:
--- 249,255 ----
  
                 case IDM_HELPABOUT:
                    if( DialogBox( hInstance, "ABOUTBOX",
!                                  hwnd, lpfnAboutBox ) )
                       InvalidateRect( hwnd, NULL, TRUE );
                    return( 0 );
  	       case IDM_HELPCONTENTS:


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]