In cddl/contrib/opensolaris/tools/ctf/cvt/ctfmerge.c, a size_t is passed
to fprintf as a field width. It should be an int instead, so cast it. MFC after: 1 week
This commit is contained in:
parent
139df251d9
commit
1e02cf9b8c
@ -228,7 +228,7 @@ usage(void)
|
||||
"\n"
|
||||
" Note: if -L labelenv is specified and labelenv is not set in\n"
|
||||
" the environment, a default value is used.\n",
|
||||
progname, progname, strlen(progname), " ",
|
||||
progname, progname, (int)strlen(progname), " ",
|
||||
progname, progname);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user