diff options
| author | jakllsch <jakllsch@NetBSD.org> | 2012-03-08 16:35:53 +0000 |
|---|---|---|
| committer | jakllsch <jakllsch@NetBSD.org> | 2012-03-08 16:35:53 +0000 |
| commit | 3c73bf8c372e16a26305b9ae083070e8c2088a7d (patch) | |
| tree | c972a42c300cf8f90809abf39bc53a2ce873591d /sys/dev/microcode | |
| parent | 1e1132043bb21e1ef4124ab53ae0f79f586c9644 (diff) | |
More-properly quote multiline string containing C-style multiline comment.
Diffstat (limited to 'sys/dev/microcode')
| -rw-r--r-- | sys/dev/microcode/cyclades-z/cyzfirm2h.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/dev/microcode/cyclades-z/cyzfirm2h.c b/sys/dev/microcode/cyclades-z/cyzfirm2h.c index eb84cfad5a2..6bdb97eb299 100644 --- a/sys/dev/microcode/cyclades-z/cyzfirm2h.c +++ b/sys/dev/microcode/cyclades-z/cyzfirm2h.c @@ -1,4 +1,4 @@ -/* $NetBSD: cyzfirm2h.c,v 1.6 2009/03/18 10:22:41 cegger Exp $ */ +/* $NetBSD: cyzfirm2h.c,v 1.7 2012/03/08 16:35:53 jakllsch Exp $ */ /*- * Copyright (c) 2000 Zembu Labs, Inc. @@ -39,7 +39,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: cyzfirm2h.c,v 1.6 2009/03/18 10:22:41 cegger Exp $"); +__RCSID("$NetBSD: cyzfirm2h.c,v 1.7 2012/03/08 16:35:53 jakllsch Exp $"); #include <sys/types.h> #include <sys/mman.h> @@ -99,14 +99,14 @@ main(int argc, char *argv[]) err(1, "unable to mmap input file"); (void) close(i); - fprintf(out_file, "/*\t$NetBSD: cyzfirm2h.c,v 1.6 2009/03/18 10:22:41 cegger 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, "/*\t$NetBSD: cyzfirm2h.c,v 1.7 2012/03/08 16:35:53 jakllsch Exp $\t*/\n\n"); + fprintf(out_file, + "/*\n" + " * Firmware for Cyclades Z series multiport serial boards.\n" + " * Automatically generated from:\n" + " *\n" + " *\t%s\n" + " */\n\n", argv[1]); fprintf(out_file, "#ifndef _%s_\n", include_name); fprintf(out_file, "#define\t_%s_\n\n", include_name); |
