summaryrefslogtreecommitdiffstats
path: root/usr.bin/infocmp
diff options
context:
space:
mode:
authormpech <mpech@openbsd.org>2001-11-19 19:02:13 +0000
committermpech <mpech@openbsd.org>2001-11-19 19:02:13 +0000
commitc0932ef1ff904414b7b30ce50770e9406cf07263 (patch)
treedb3d911ff20f2ed15d51bfd21c0561eef33d12dc /usr.bin/infocmp
parentclarify/state that private keys are not exposed to clients using the agent; (diff)
downloadwireguard-openbsd-c0932ef1ff904414b7b30ce50770e9406cf07263.tar.xz
wireguard-openbsd-c0932ef1ff904414b7b30ce50770e9406cf07263.zip
kill more registers
millert@ ok
Diffstat (limited to 'usr.bin/infocmp')
-rw-r--r--usr.bin/infocmp/infocmp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/infocmp/infocmp.c b/usr.bin/infocmp/infocmp.c
index 91a1b6181db..f888d46386c 100644
--- a/usr.bin/infocmp/infocmp.c
+++ b/usr.bin/infocmp/infocmp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: infocmp.c,v 1.14 2001/10/24 13:06:36 mpech Exp $ */
+/* $OpenBSD: infocmp.c,v 1.15 2001/11/19 19:02:14 mpech Exp $ */
/****************************************************************************
* Copyright (c) 1998,1999,2000 Free Software Foundation, Inc. *
@@ -337,8 +337,8 @@ static void
compare_predicate(int type, int idx, const char *name)
/* predicate function to use for entry difference reports */
{
- register ENTRY *e1 = &entries[0];
- register ENTRY *e2 = &entries[1];
+ ENTRY *e1 = &entries[0];
+ ENTRY *e2 = &entries[1];
char buf1[MAX_STRING], buf2[MAX_STRING];
int b1, b2;
int n1, n2;