Skip to content
Snippets Groups Projects
Commit 10d77eb6 authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

updated for version 7.3.153

Problem:    Compiler warning for ambiguous else, missing prototype.
Solution:   Add braces. (Dominique Pelle)  Add prototype for die().
parent e0659a68
No related branches found
Tags v7.3.271
No related merge requests found
......@@ -714,6 +714,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
153,
/**/
152,
/**/
......
......@@ -210,6 +210,7 @@ char osver[] = "";
/* Let's collect some prototypes */
/* CodeWarrior is really picky about missing prototypes */
static void exit_with_usage __P((void));
static void die __P((int));
static int huntype __P((FILE *, FILE *, FILE *, int, int, long));
static void xxdline __P((FILE *, char *, int));
......@@ -689,6 +690,7 @@ main(argc, argv)
while (s--)
if (getc(fp) == EOF)
{
if (ferror(fp))
{
die(2);
......@@ -698,6 +700,7 @@ main(argc, argv)
fprintf(stderr, "%s: sorry cannot seek.\n", pname);
return 4;
}
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment