Fix a place where we were exiting without applying the exit-specs.

Wrap a long line.


git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@53 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
bsd 2001-01-26 17:25:45 +00:00
parent 2617074192
commit 502c1a50db
1 changed files with 4 additions and 3 deletions

7
main.c
View File

@ -449,11 +449,12 @@ int main ( int argc, char * argv [] )
fprintf(stderr, fprintf(stderr,
"%s: Yikes! Invalid device signature.\n", progname); "%s: Yikes! Invalid device signature.\n", progname);
if (!ovsigck) { if (!ovsigck) {
fprintf(stderr, fprintf(stderr, "%sDouble check connections and try again, "
"%sDouble check connections and try again, or use -F to override\n" "or use -F to override\n"
"%sthis check.\n\n", "%sthis check.\n\n",
progbuf, progbuf ); progbuf, progbuf );
exit(1); exitrc = 1;
goto main_exit;
} }
} }