diff options
Diffstat (limited to 'scripts/bin2sql.c')
-rw-r--r-- | scripts/bin2sql.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/bin2sql.c b/scripts/bin2sql.c index 8bc72f842..ce5e600a3 100644 --- a/scripts/bin2sql.c +++ b/scripts/bin2sql.c @@ -6,7 +6,6 @@ */ int main(int argc, char *argv[]) { - int end = 0; unsigned char byte; printf("X'"); @@ -14,7 +13,6 @@ int main(int argc, char *argv[]) { if (fread(&byte, 1, 1, stdin) != 1) { - end = 1; break; } printf("%02x", (unsigned int)byte); |