diff options
author | 2019-05-10 12:49:58 +0000 | |
---|---|---|
committer | 2019-05-10 12:49:58 +0000 | |
commit | 886f00e8219261d34eaaaa76f4e7f68a86206c52 (patch) | |
tree | 428e6d118204c9a95a8ecba92e1df0f6a4d3e5e8 | |
parent | Delete support for military timezones in %z (A-I and K-Y). (diff) | |
download | wireguard-openbsd-886f00e8219261d34eaaaa76f4e7f68a86206c52.tar.xz wireguard-openbsd-886f00e8219261d34eaaaa76f4e7f68a86206c52.zip |
Fix prototype of upgrade(). OK benno@
-rw-r--r-- | sys/stand/boot/cmd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/stand/boot/cmd.h b/sys/stand/boot/cmd.h index c2e4ae6dbab..494d0bce6f3 100644 --- a/sys/stand/boot/cmd.h +++ b/sys/stand/boot/cmd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd.h,v 1.17 2019/04/08 13:55:46 florian Exp $ */ +/* $OpenBSD: cmd.h,v 1.18 2019/05/10 12:49:58 claudio Exp $ */ /* * Copyright (c) 1997 Michael Shalayeff @@ -60,5 +60,5 @@ int read_conf(void); int bootparse(int); void boot(dev_t); -int upgrade(); +int upgrade(void); int docmd(void); /* No longer static: needed by regress test */ |