Skip to content
This repository has been archived by the owner on Aug 14, 2020. It is now read-only.

Commit

Permalink
made error messages less scary to users
Browse files Browse the repository at this point in the history
  • Loading branch information
emiyl committed Apr 14, 2020
1 parent 995c345 commit 9c4096d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sd_dumper.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ static int DumpFile(char *pPath, const char * output_path)
FILE *pReadFile = fopen(pPath, "rb");
if(!pReadFile)
{
console_printf(1, "Can't open file %s\n", pPath);
console_printf(1, "Symlink file, skipping...\n");
return -2;
}

Expand Down

0 comments on commit 9c4096d

Please sign in to comment.