Skip to content
Snippets Groups Projects

Add inspect-library helper

Merged Ludovico de Nittis requested to merge wip/denittis/inspect-library into master
Compare and Show latest version
1 file
+ 3
1
Compare changes
  • Side-by-side
  • Inline
+ 3
1
@@ -92,7 +92,9 @@ main (int argc,
fp = fopen(argv[2], "r");
if (fp == NULL)
{
fprintf (stderr, "An error occurred reading the provided text file.\n");
int saved_errno = errno;
fprintf (stderr, "Error reading \"%s\": %s\n", argv[2], strerror (saved_errno));
printf ("\n ]");
clean_exit (handle);
return 1;
Loading