[ROSAPPS]
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Sat, 14 Mar 2015 23:32:00 +0000 (23:32 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Sat, 14 Mar 2015 23:32:00 +0000 (23:32 +0000)
Fix GCC warnings

svn path=/trunk/; revision=66714

rosapps/applications/sysutils/kill/kill.c
rosapps/applications/winfile/winefile.c
rosapps/drivers/green/screen.c

index 98639b2..bce146a 100644 (file)
@@ -66,6 +66,7 @@ ExecuteKill(char * lpPid)
 int main(int argc, char *argv[])
 {
   char tail;
+  DBG_UNREFERENCED_LOCAL_VARIABLE(tail);
 
   if (argc < 2)
   {
index d2413d1..cdbcefc 100644 (file)
@@ -2056,8 +2056,8 @@ static LRESULT CALLBACK FrameWndProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM
        switch(nmsg) {
                case WM_CLOSE:
                        if (Globals.saveSettings)
-                               save_registry_settings();  
-                       
+                               save_registry_settings();
+
                        DestroyWindow(hwnd);
 
                         /* clear handle variables */
@@ -4278,7 +4278,7 @@ static BOOL show_frame(HWND hwndParent, int cmdshow, LPCWSTR path)
                                        WS_CHILD|WS_CLIPCHILDREN|WS_VSCROLL|WS_HSCROLL|WS_VISIBLE|WS_BORDER,
                                        0, 0, 0, 0,
                                        Globals.hMainWnd, 0, Globals.hInstance, &ccs);
-  
+
        CheckMenuItem(Globals.hMenuOptions, ID_VIEW_DRIVE_BAR, MF_BYCOMMAND|MF_CHECKED);
        CheckMenuItem(Globals.hMenuOptions, ID_VIEW_SAVESETTINGS, MF_BYCOMMAND);
 
@@ -4313,7 +4313,7 @@ static BOOL show_frame(HWND hwndParent, int cmdshow, LPCWSTR path)
 
 #ifndef __WINE__
         /* Shell Namespace as default: */
-       child = alloc_child_window(path, get_path_pidl(path,Globals.hMainWnd), Globals.hMainWnd);
+       child = alloc_child_window(path, get_path_pidl((LPWSTR)path,Globals.hMainWnd), Globals.hMainWnd);
 #else
        child = alloc_child_window(path, NULL, Globals.hMainWnd);
 #endif
index ed7bf84..fc673b6 100644 (file)
@@ -276,6 +276,8 @@ ScreenWrite(
        ULONG Columns, Rows;
        ULONG CursorX, CursorY;
        ULONG i, j;
+       DBG_UNREFERENCED_LOCAL_VARIABLE(VideoMemory);
+       DBG_UNREFERENCED_LOCAL_VARIABLE(VideoMemorySize);
 
        DPRINT("ScreenWrite() called\n");