Displaying 1 result from an estimated 1 matches for "7ee9a7f".
Did you mean:
2ee9abf
2011 Jun 11
1
isohybrid.c patch: to support hex parameters
...back (say, changing
> sscanf(%u) -> sscanf(%i))?
>
I've made the changes to the current git repository and below is the patch(also attached) to fix this issue.
Could you please have a look at it and sign off this change?
===
diff --git a/utils/isohybrid.c b/utils/isohybrid.c
index 7ee9a7f..8a60531 100644
--- a/utils/isohybrid.c
+++ b/utils/isohybrid.c
@@ -108,6 +108,7 @@ printh(void)
?int
?check_option(int argc, char *argv[])
?{
+??? char *err = NULL;
???? int n = 0, ind = 0;
?
???? const char optstr[] = ":h:s:e:o:t:i:fcp?vV";
@@ -135,32 +136,38 @@ check_option(int argc, c...