mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 02:27:36 +03:00
Fix gcc c90 compliance warnings
Fix non-c90 compliant code, for the most part these changes simply deal with where a particular variable is declared. Under c90 it must alway be done at the very start of a block. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
This commit is contained in:
+1
-1
@@ -3238,7 +3238,7 @@ append_options(char *mntopts, char *newopts)
|
||||
/* original length plus new string to append plus 1 for the comma */
|
||||
if (len + 1 + strlen(newopts) >= MNT_LINE_MAX) {
|
||||
(void) fprintf(stderr, gettext("the opts argument for "
|
||||
"'%c' option is too long (more than %d chars)\n"),
|
||||
"'%s' option is too long (more than %d chars)\n"),
|
||||
"-o", MNT_LINE_MAX);
|
||||
usage(B_FALSE);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user