OBS User unknown
2006-12-18 23:15:57 +00:00
committed by Git OBS Bridge
commit ba7b366383
12 changed files with 1147 additions and 0 deletions

41
warn.diff Normal file
View File

@@ -0,0 +1,41 @@
Index: lib/regexprops.c
================================================================================
--- lib/regexprops.c
+++ lib/regexprops.c
@@ -144,7 +144,7 @@
}
-static int describe_regex_syntax(int options)
+static void describe_regex_syntax(int options)
{
newpara();
content("The character @samp{.} matches any single character");
@@ -435,7 +435,7 @@
-static int menu()
+static void menu()
{
int i, options;
const char *name;
@@ -456,7 +456,7 @@
}
-static int describe_all(const char *up)
+static void describe_all(const char *up)
{
const char *name, *next, *previous;
int options;
--- xargs/xargs.c
+++ xargs/xargs.c
@@ -409,6 +409,7 @@
error(1, 0,
_("Invalid input delimiter specification %s: the delimiter must be either a single character or an escape sequence starting with \\."),
s);
+ return 0;
}
}
}