diff options
author | 2014-12-19 17:44:29 +0000 | |
---|---|---|
committer | 2014-12-19 17:44:29 +0000 | |
commit | 37381510d17c24b1e4528829949eadc4060da9d8 (patch) | |
tree | 03e0ed4e08c2ba961fc3d019c8868d5bd9e35ddb | |
parent | remove ipw. it wasn't included in generic, but nobody complained, (diff) | |
download | wireguard-openbsd-37381510d17c24b1e4528829949eadc4060da9d8.tar.xz wireguard-openbsd-37381510d17c24b1e4528829949eadc4060da9d8.zip |
multiline string literals aren't really a thing. just smush a few strings
together.
-rw-r--r-- | sys/dev/microcode/cyclades/cyzfirm2h.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/dev/microcode/cyclades/cyzfirm2h.c b/sys/dev/microcode/cyclades/cyzfirm2h.c index 72f98170dc0..9ab81935ebb 100644 --- a/sys/dev/microcode/cyclades/cyzfirm2h.c +++ b/sys/dev/microcode/cyclades/cyzfirm2h.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cyzfirm2h.c,v 1.2 2002/01/23 01:14:26 ericj Exp $ */ +/* $OpenBSD: cyzfirm2h.c,v 1.3 2014/12/19 17:44:29 tedu Exp $ */ /* $NetBSD: cyzfirm2h.c,v 1.1 2000/05/17 17:58:10 thorpej Exp $ */ /*- @@ -98,13 +98,13 @@ main(int argc, char *argv[]) (void) close(i); fprintf(out_file, "/*\t$NetBSD: cyzfirm2h.c,v 1.1 2000/05/17 17:58:10 thorpej Exp $\t*/\n\n"); - fprintf(out_file, "\ -/* - * Firmware for Cyclades Z series multiport serial boards. - * Automatically generated from: - * - * %s - */\n\n", argv[1]); + fprintf(out_file, +"/*\n" +" * Firmware for Cyclades Z series multiport serial boards.\n" +" * Automatically generated from:\n" +" *\n" +" * %s\n" +" */\n\n", argv[1]); fprintf(out_file, "#ifndef _%s_\n", include_name); fprintf(out_file, "#define\t_%s_\n\n", include_name); |