Displaying 2 results from an estimated 2 matches for "51e50f7".
Did you mean:
515017
2011 Nov 30
1
[PATCH] vsscanf: remove unused variables
Removed unused local variable from vsscanf().
Signed-off-by: Greg Thelen <gthelen at google.com>
---
usr/klibc/vsscanf.c | 7 -------
1 files changed, 0 insertions(+), 7 deletions(-)
diff --git a/usr/klibc/vsscanf.c b/usr/klibc/vsscanf.c
index 51e50f7..b8f068c 100644
--- a/usr/klibc/vsscanf.c
+++ b/usr/klibc/vsscanf.c
@@ -88,7 +88,6 @@ int vsscanf(const char *buffer, const char *format, va_list ap)
} state = st_normal;
char *sarg = NULL; /* %s %c or %[ string argument */
enum bail bail = bail_none;
- int sign;
int converted = 0; /* Succe...
2011 Dec 04
0
[GIT PULL] klibc minor fixes
...gned integer types are the same the only reason to track it
would be to handle numeric overflow." -hpa
Acked-by: "H. Peter Anvin" <hpa at zytor.com>
Signed-off-by: maximilian attems <max at stro.at>
diff --git a/usr/klibc/vsscanf.c b/usr/klibc/vsscanf.c
index 51e50f7..b8f068c 100644
--- a/usr/klibc/vsscanf.c
+++ b/usr/klibc/vsscanf.c
@@ -88,7 +88,6 @@ int vsscanf(const char *buffer, const char *format, va_list ap)
} state = st_normal;
char *sarg = NULL; /* %s %c or %[ string argument */
enum bail bail = bail_none;
- int sign;
int converted = 0; /* Succe...