Commits
Elena Pourmal committed 66769683e1e
Bug fix: The program was compiled with the warnings indicating value overflow. The warnings pointed to an error in the code that caused the program to fail while reading data from the file. $ gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 create_large_file.c create_large_file.c: In function 'main': create_large_file.c:48: warning: integer overflow in expression create_large_file.c:48: warning: integer overflow in expression create_large_file.c:48: warning: overflow in implicit constant conversion $ a.out Error in second seek because Invalid argument Fixed the problem by declaring the correct constant. Platforms tested: jam, amani and linew