diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-11-18 20:56:54 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-11-18 20:56:54 +0000 |
commit | 32bcb7ccf95d4bd90f6df5701598a8ac2f4b7d7c (patch) | |
tree | bf7e2733396f8e05361873bd531fa00b54309fa8 /usr.bin/mg/cinfo.c | |
parent | 8130188ef7f4e6c63aa6deeadc2f1e642ea67243 (diff) |
greedy use of typedef struct was making code harder to read; ok kjell cloder
Diffstat (limited to 'usr.bin/mg/cinfo.c')
-rw-r--r-- | usr.bin/mg/cinfo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/mg/cinfo.c b/usr.bin/mg/cinfo.c index fd5a2cff421..26d05bea8ee 100644 --- a/usr.bin/mg/cinfo.c +++ b/usr.bin/mg/cinfo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cinfo.c,v 1.13 2005/10/13 06:20:25 kjell Exp $ */ +/* $OpenBSD: cinfo.c,v 1.14 2005/11/18 20:56:52 deraadt Exp $ */ /* This file is in the public domain. */ @@ -94,8 +94,8 @@ const char cinfo[256] = { char * keyname(char *cp, size_t len, int k) { - const char *np; - size_t copied; + const char *np; + size_t copied; if (k < 0) k = CHARMASK(k); /* sign extended char */ |