Fixed initialization error in bad_lseek

This commit is contained in:
Guru Prasad Srinivasa 2016-03-01 17:24:47 -05:00
parent fd45f9b722
commit a9c196a1cc

View File

@ -75,7 +75,7 @@ lseek_file_stdin(void)
const char slogan[] = "There ain't no such thing as a free lunch"; const char slogan[] = "There ain't no such thing as a free lunch";
size_t len = strlen(slogan); size_t len = strlen(slogan);
pid_t pid; pid_t pid;
int result; int result = 0;
report_begin("lseek stdin when open on file"); report_begin("lseek stdin when open on file");