Changeset 840 for trunk/updater/bsdiff/bspatch.cpp
- Timestamp:
- 01/30/10 18:28:45 (6 months ago)
- Files:
-
- 1 modified
-
trunk/updater/bsdiff/bspatch.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/updater/bsdiff/bspatch.cpp
r779 r840 21 21 22 22 #include "bspatch.h" 23 #include <string> 23 24 24 25 void errx(char a, char* format, char* param) 25 26 { 26 printf(format,param); 27 printf("bspatch error: "); 28 printf(format,param); 29 Sleep(4000); 27 30 exit(1); 28 31 } 29 32 void errx(char a, char* format) 30 33 { 31 printf(format); 34 printf("bspatch error: "); 35 printf(format); 36 Sleep(4000); 32 37 exit(1); 33 38 }
