summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorMandrake <mandrake@user.sourceforge.net>1999-10-19 01:22:10 +0000
committerMandrake <mandrake@user.sourceforge.net>1999-10-19 01:22:10 +0000
commit664c44bb96346234307d31d406be59560e5c07a7 (patch)
treeb4d3ccfaebfbb7cbdedc2e21878e4b349b7ab9e8 /utils
parentfd604f2878249159105af6ce79b92f62786807a5 (diff)
downloadeterm-664c44bb96346234307d31d406be59560e5c07a7.tar.gz
Tue Oct 19 00:13:17 PDT 1999 Mandrake <mandrake@mandrake.net>
Almost all the warnings are gone. only 3 remain on my system at home. two in command.c (where do I get proper prototypes for grantpt() and unlockpt()?) and one in options.c that is bizarre: options.c:3433: warning: `%x' yields only last 2 digits of year in some locales SVN revision: 871
Diffstat (limited to 'utils')
-rw-r--r--utils/Etbg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/Etbg.c b/utils/Etbg.c
index 24e10d3..6723324 100644
--- a/utils/Etbg.c
+++ b/utils/Etbg.c
@@ -37,7 +37,8 @@ int
main(int argc, char **argv)
{
int scale = FALSE, trans = FALSE;
- unsigned int i, pic = 0;
+ unsigned int pic = 0;
+ int i;
for (i = 1; i < argc; i++) {
if (strcasecmp(argv[i], "-scale") == 0) {