diff options
author | 2016-01-19 17:55:19 +0000 | |
---|---|---|
committer | 2016-01-19 17:55:19 +0000 | |
commit | f28a080d198a701c81a0cd617229b96ee4bd6550 (patch) | |
tree | dc9c063304bc422b9228d57dd629edd03e74f8a2 | |
parent | Mask interrupts on boot, masking/unmasking is handled by stop/init (diff) | |
download | wireguard-openbsd-f28a080d198a701c81a0cd617229b96ee4bd6550.tar.xz wireguard-openbsd-f28a080d198a701c81a0cd617229b96ee4bd6550.zip |
Remove unused global 'io_buffer'.
-rw-r--r-- | sbin/pdisk/io.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sbin/pdisk/io.c b/sbin/pdisk/io.c index a3cbdab43b5..52148944978 100644 --- a/sbin/pdisk/io.c +++ b/sbin/pdisk/io.c @@ -1,4 +1,4 @@ -/* $OpenBSD: io.c,v 1.17 2016/01/18 15:03:18 krw Exp $ */ +/* $OpenBSD: io.c,v 1.18 2016/01/19 17:55:19 krw Exp $ */ /* * io.c - simple io and input parsing routines @@ -45,7 +45,6 @@ const long kDefault = -1; short unget_buf[UNGET_MAX_COUNT + 1]; int unget_count; -char io_buffer[MAXIOSIZE]; long get_number(int); char *get_string(int); |