Skip to content

Commit 1a33fb1

Browse files
authored
Merge pull request #181 from thbeu/fix-message
Fix file name in message
2 parents 68efc17 + c1fcea7 commit 1a33fb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dbfdump.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ int main(int argc, char **argv)
5959
DBFHandle hDBF = DBFOpen(pszFilename, "rb");
6060
if (hDBF == NULL)
6161
{
62-
printf("DBFOpen(%s,\"r\") failed.\n", argv[1]);
62+
printf("DBFOpen(%s,\"r\") failed.\n", pszFilename);
6363
exit(2);
6464
}
6565

0 commit comments

Comments
 (0)