summaryrefslogtreecommitdiff
path: root/sys/dev/microcode
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2014-12-19 17:44:30 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2014-12-19 17:44:30 +0000
commitb8d60590925ff4d90f40cabc1e46d870ec01e28e (patch)
tree93ade78b0ae485e96826e9c77f313497c1669592 /sys/dev/microcode
parentc05c5fcb78cb657017115a69c5097d4907244390 (diff)
multiline string literals aren't really a thing. just smush a few strings
together.
Diffstat (limited to 'sys/dev/microcode')
-rw-r--r--sys/dev/microcode/cyclades/cyzfirm2h.c16
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);