missing LOGFILE in debug statement

This commit is contained in:
Andreas Steffen 2008-12-23 06:35:16 +00:00
parent 4856241c1e
commit b768170bf3
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ int main(int argc, char *argv[])
fd = fopen(LOGFILE, "r");
if (!fd)
{
printf("could not open log file '%s'\n");
printf("could not open log file '%s'\n", LOGFILE);
return 1;
}