Skip to content

Commit

Permalink
shveu_convert: fail on error opening VEU
Browse files Browse the repository at this point in the history
  • Loading branch information
kfish committed Feb 16, 2010
1 parent 4f73d5c commit cb2de36
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/tools/shveu-convert.c
Expand Up @@ -510,7 +510,10 @@ int main (int argc, char * argv[])
}
}

shveu_open ();
if (shveu_open () < 0) {
fprintf (stderr, "Error opening VEU\n");
goto exit_err;
}

while (1) {
#ifdef DEBUG
Expand Down

0 comments on commit cb2de36

Please sign in to comment.