diff options
author | 2005-05-24 20:48:35 +0000 | |
---|---|---|
committer | 2005-05-24 20:48:35 +0000 | |
commit | cd52bd43a642459d20fe2f06be3196d3ceb03a0c (patch) | |
tree | f7b9992bd2b2fe13ead3d5cb370a96dd0a80ea6d /sys | |
parent | Fix format string. (diff) | |
download | wireguard-openbsd-cd52bd43a642459d20fe2f06be3196d3ceb03a0c.tar.xz wireguard-openbsd-cd52bd43a642459d20fe2f06be3196d3ceb03a0c.zip |
printf(s) -> printf("%s", s)
Diffstat (limited to 'sys')
-rw-r--r-- | sys/stand/boot/vars.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/stand/boot/vars.c b/sys/stand/boot/vars.c index 48008c63e83..d889be91945 100644 --- a/sys/stand/boot/vars.c +++ b/sys/stand/boot/vars.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vars.c,v 1.12 2004/06/24 22:41:39 tom Exp $ */ +/* $OpenBSD: vars.c,v 1.13 2005/05/24 20:48:35 uwe Exp $ */ /* * Copyright (c) 1998-2000 Michael Shalayeff @@ -235,7 +235,7 @@ Xenv(void) { if (cmd.argc == 1) { if (environ) - printf(environ); + printf("%s", environ); else printf("empty\n"); } else { |