diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-31 13:12:13 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-31 13:12:13 +0000 |
commit | 032319f753dd9ae8426f9842aaffff71980d30ca (patch) | |
tree | 7a94c1e8d1a36fda2cbeff6f11b9b1f32d296728 /usr.sbin | |
parent | c1f0973d3652f7522d59dd95b03b7a4500040b10 (diff) |
typo
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/eeprom/ophandlers.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/eeprom/ophandlers.c b/usr.sbin/eeprom/ophandlers.c index 8aad8c34ae2..315d59c1c6e 100644 --- a/usr.sbin/eeprom/ophandlers.c +++ b/usr.sbin/eeprom/ophandlers.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ophandlers.c,v 1.3 1996/08/31 12:56:08 deraadt Exp $ */ +/* $OpenBSD: ophandlers.c,v 1.4 1996/08/31 13:12:12 deraadt Exp $ */ /* $NetBSD: ophandlers.c,v 1.2 1996/02/28 01:13:30 thorpej Exp $ */ /*- @@ -71,7 +71,7 @@ static struct extabent opextab[] = { }; #define BARF(str1, str2) { \ - snprintf(err_str, sizeof err_str "%s: %s", (str1), (str2)); \ + snprintf(err_str, sizeof err_str, "%s: %s", (str1), (str2)); \ ++eval; \ return (err_str); \ }; |