]> granicus.if.org Git - php/commitdiff
- Fix indentation
authorAndi Gutmans <andi@php.net>
Mon, 1 Dec 2003 20:18:55 +0000 (20:18 +0000)
committerAndi Gutmans <andi@php.net>
Mon, 1 Dec 2003 20:18:55 +0000 (20:18 +0000)
TSRM/tsrm_win32.c

index 109578719368370040ebc91f0403b07c5180ccd4..0ceb69b990f052073927ba781ab8d25bdaa2db2a 100644 (file)
@@ -377,10 +377,11 @@ TSRM_API int shmctl(int key, int cmd, struct shmid_ds *buf) {
 
 TSRM_API char *realpath(char *orig_path, char *buffer)
 {
-                   int ret = GetFullPathName(orig_path, _MAX_PATH, buffer, NULL);
-                           if(!ret || ret > _MAX_PATH) {
-                                                       return NULL;
-                                                                   }
-                                   return buffer;
+       int ret = GetFullPathName(orig_path, _MAX_PATH, buffer, NULL);
+       if(!ret || ret > _MAX_PATH) {
+               return NULL;
+       }
+       return buffer;
 }
+
 #endif