diff options
author | Martin Willi <martin@strongswan.org> | 2008-07-02 08:16:43 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2008-07-02 08:16:43 +0000 |
commit | 5848e473e81ed2b48924b331d60feee5f21a1916 (patch) | |
tree | c669798032cd6d3b2942fb7a0cfb2646c968c531 | |
parent | fca4d3ee03fa7e020ace6512e5488c50fc56ef4a (diff) | |
download | strongswan-5848e473e81ed2b48924b331d60feee5f21a1916.tar.bz2 strongswan-5848e473e81ed2b48924b331d60feee5f21a1916.tar.xz |
fixed another compiler warning
-rw-r--r-- | scripts/bin2sql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bin2sql.c b/scripts/bin2sql.c index 5c8176d90..4f83dd3f2 100644 --- a/scripts/bin2sql.c +++ b/scripts/bin2sql.c @@ -6,7 +6,7 @@ */ int main(int argc, char *argv[]) { - int i, end = 0; + int end = 0; unsigned char byte; printf("X'"); |