# HG changeset patch # User erik # Date 1252250803 0 # Node ID 3daa43270d2cba8173b9716903efdcab8536ebf2 # Parent 61edd6fa781b5c97165e4432c8b8e2b62220ee98 Cosmetic change only - os2_open os2_open() doesn't look like the rest of the code. And since we just updated it, it probably should look like the rest of the code. diff -r 61edd6fa781b -r 3daa43270d2c vm/vm.c --- a/vm/vm.c Sun Sep 06 15:26:39 2009 +0000 +++ b/vm/vm.c Sun Sep 06 15:26:43 2009 +0000 @@ -142,21 +142,21 @@ static int os2_open(const char *name, int oflag) { - HFILE hfile; - ULONG ulAction; - ULONG rc; + HFILE hfile; + ULONG ulAction; + ULONG rc; - rc = DosOpenL( name, &hfile, &ulAction, 0, FILE_NORMAL, - OPEN_ACTION_OPEN_IF_EXISTS | OPEN_ACTION_FAIL_IF_NEW, - OPEN_ACCESS_READONLY | OPEN_SHARE_DENYNONE | OPEN_FLAGS_DASD, - NULL ); + rc = DosOpenL(name, &hfile, &ulAction, 0, FILE_NORMAL, + OPEN_ACTION_OPEN_IF_EXISTS | OPEN_ACTION_FAIL_IF_NEW, + OPEN_ACCESS_READONLY | OPEN_SHARE_DENYNONE | OPEN_FLAGS_DASD, + NULL); - if( rc ) - return -1; + if(rc) + return -1; - setmode( hfile, O_BINARY ); + setmode(hfile, O_BINARY); - return ( int )hfile; + return (int)hfile; } #endif