changeset 1342:b4a23eab81fa

*sighs* tabs again... I really need to figure out how to change the default to spaces.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 14 Nov 2011 17:31:59 +0000
parents 184b3aedc2ff
children d4c874f13e9b
files os2/dw.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/os2/dw.c	Mon Nov 14 17:14:54 2011 +0000
+++ b/os2/dw.c	Mon Nov 14 17:31:59 2011 +0000
@@ -3739,7 +3739,7 @@
    /* Load DLLs for providing extra functionality if available */
    DosLoadModule((PSZ)objnamebuf, sizeof(objnamebuf), (PSZ)"WPCONFIG", &wpconfig);
    if(!DosLoadModule((PSZ)objnamebuf, sizeof(objnamebuf), (PSZ)"PMPRINTF", &pmprintf))
-	   DosQueryProcAddr(pmprintf, 0, (PSZ)"PmPrintfString", (PFN*)&_PmPrintfString);
+       DosQueryProcAddr(pmprintf, 0, (PSZ)"PmPrintfString", (PFN*)&_PmPrintfString);
    return rc;
 }
 
@@ -3910,9 +3910,9 @@
    va_end(args);
 
    if(_PmPrintfString)
-	   _PmPrintfString(outbuf);
+       _PmPrintfString(outbuf);
    else
-	   fprintf(stderr, "%s", outbuf);
+       fprintf(stderr, "%s", outbuf);
 }
 
 /*