Michael Stefaniuc : winedos: Do not cast NULL.

Alexandre Julliard julliard at winehq.org
Mon Nov 3 09:06:58 CST 2008


Module: wine
Branch: master
Commit: ea3980974dbd3796a09d05b453b6b6401ed94f31
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=ea3980974dbd3796a09d05b453b6b6401ed94f31

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Sun Nov  2 00:21:38 2008 +0100

winedos: Do not cast NULL.

---

 dlls/winedos/devices.c |    2 +-
 dlls/winedos/ppdev.c   |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/winedos/devices.c b/dlls/winedos/devices.c
index 6246cf9..0ee6f6c 100644
--- a/dlls/winedos/devices.c
+++ b/dlls/winedos/devices.c
@@ -187,7 +187,7 @@ static void WINAPI con_interrupt(CONTEXT86*ctx)
   DOS_DATASEG *dataseg = (DOS_DATASEG *)lol;
   BYTE *linebuffer = dataseg->buffer;
   BYTE *curbuffer = (lol->offs_unread_CON) ?
-    (((BYTE*)dataseg) + lol->offs_unread_CON) : (BYTE*)NULL;
+    (((BYTE*)dataseg) + lol->offs_unread_CON) : NULL;
   DOS_DEVICE_HEADER *con = dataseg->dev;
   DWORD w;
 
diff --git a/dlls/winedos/ppdev.c b/dlls/winedos/ppdev.c
index 8c83f38..0c74ae6 100644
--- a/dlls/winedos/ppdev.c
+++ b/dlls/winedos/ppdev.c
@@ -139,7 +139,7 @@ char IO_pp_init(void)
 	      ERR("Is the ppdev module loaded?\n");
 	    continue;
 	  }
-	userbase = strtol(name,(char **)NULL, 16);
+        userbase = strtol(name, NULL, 16);
 	if ( errno == ERANGE)
 	  {
 	    WARN("Configuration: Invalid base %s for %s\n",name,buffer);
@@ -193,7 +193,7 @@ char IO_pp_init(void)
 	PPDeviceList[nports].lastaccess=GetTickCount();
 	if (timeout)
 	  {
-	    PPDeviceList[nports].timeout = strtol(timeout,(char **)NULL, 10);
+            PPDeviceList[nports].timeout = strtol(timeout, NULL, 10);
 	    if (errno == ERANGE)
 	      {
 		WARN("Configuration: Invalid timeout %s in configuration for %s, Setting to 0\n",




More information about the wine-cvs mailing list