summaryrefslogtreecommitdiffstats
path: root/listen
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2009-06-14 08:48:52 +0000
committerRalf Baechle <ralf@linux-mips.org>2009-06-14 08:48:52 +0000
commitcd98bf42c5ab3cb061a32068d866616c71c40bf9 (patch)
tree3237238ec7bd2cca3adeb4e47f6cd9c372ae9d2c /listen
parent6aea263a2ef5d13b7fb750401d30f7a41e9c5229 (diff)
Eleminate use of register keyword
Any modern C compiler will just ignore register so it's just cluttering the screen.
Diffstat (limited to 'listen')
-rw-r--r--listen/nrdump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/listen/nrdump.c b/listen/nrdump.c
index 419c8e8..b813633 100644
--- a/listen/nrdump.c
+++ b/listen/nrdump.c
@@ -1,4 +1,4 @@
-/* @(#) $Header: /home/ax25-cvs/ax25-apps/listen/nrdump.c,v 1.3 2001/11/27 04:57:43 csmall Exp $ */
+/* @(#) $Header: /home/ax25-cvs/ax25-apps/listen/nrdump.c,v 1.4 2009/06/14 08:48:52 ralf Exp $ */
/* NET/ROM header tracing routines
* Copyright 1991 Phil Karn, KA9Q
@@ -74,7 +74,7 @@ static void netrom_inp_dump(unsigned char *data, int length)
void netrom_dump(unsigned char *data, int length, int hexdump, int type)
{
char tmp[15];
- register int i;
+ int i;
/* See if it is a routing broadcast */
if (data[0] == NR3NODESIG) {