xbase/xbase-3.1.2-gcc47.patch

22 lines
572 B
Diff
Raw Normal View History

diff -up xbase64-3.1.2/bin/dumprecs.cpp.gcc47 xbase64-3.1.2/bin/dumprecs.cpp
--- xbase64-3.1.2/bin/dumprecs.cpp.gcc47 2012-01-05 15:36:00.377536998 -0500
+++ xbase64-3.1.2/bin/dumprecs.cpp 2012-01-05 15:36:15.198399295 -0500
@@ -70,7 +70,7 @@ int main(int ac,char** av)
return 1;
}
- for(int i=1; i<ac; ++i){
+ for(int i=1; i<ac; ++i){{
char* filename = av[i];
xbDbf MyFile( &x );
@@ -91,7 +91,7 @@ int main(int ac,char** av)
x.DisplayError( rc );
}
MyFile.CloseDatabase(); /* close database */
- }
+ }}
return 0;
}