blob: 5a3149cb49120883686faa9285c0c048cb8db53a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
Description: some fixes
Index: b/bin/dumprecs.cpp
===================================================================
--- a/bin/dumprecs.cpp
+++ b/bin/dumprecs.cpp
@@ -70,7 +70,7 @@
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 @@
x.DisplayError( rc );
}
MyFile.CloseDatabase(); /* close database */
- }
+ }}
return 0;
}
|