mirror of
http://git.haproxy.org/git/haproxy.git
synced 2026-02-08 06:53:38 +02:00
BUILD: mworker: silence two printf format warnings around getpid()
getpid() is documented as returning a pit pid_t result, not necessarily an int. This causes a build warning on Solaris 10 because of '%d' or '%u' are used in the format passed to snprintf(). Let's just cast the result as an int (respectively unsigned int). This can be backported to 2.0 and possibly older versions though it really has no impact.
This commit is contained in:
@@ -3006,7 +3006,7 @@ int main(int argc, char **argv)
|
||||
/* if in master-worker mode, write the PID of the father */
|
||||
if (global.mode & MODE_MWORKER) {
|
||||
char pidstr[100];
|
||||
snprintf(pidstr, sizeof(pidstr), "%d\n", getpid());
|
||||
snprintf(pidstr, sizeof(pidstr), "%d\n", (int)getpid());
|
||||
if (pidfd >= 0)
|
||||
shut_your_big_mouth_gcc(write(pidfd, pidstr, strlen(pidstr)));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user