diff options
author | Richard PALO <richard@NetBSD.org> | 2016-05-29 08:16:28 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-06-07 08:36:49 +0000 |
commit | b09eb27b7a52d2abd9bdbf01b4532f23279c6edc (patch) | |
tree | 1ab7ece4d1aa5b45f6ff24326f9909f5f6d7668e | |
parent | 8cb088d71c4ccda318e298dbbb425b72731f9c05 (diff) |
tdf#100021 - format argument issue in process.cxx
avoid warning whether pid_t is long or int
Change-Id: I533175b53166cb233169902d277906f5ce979421
Signed-off-by: Richard PALO <richard@NetBSD.org>
Reviewed-on: https://gerrit.libreoffice.org/25593
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
(cherry picked from commit acbbb01940588604de965c4fcef64b2e17473fe6)
Reviewed-on: https://gerrit.libreoffice.org/25979
-rw-r--r-- | sal/osl/unx/process.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/osl/unx/process.cxx b/sal/osl/unx/process.cxx index 4d372a3eb3d0..9a9ba28c9e08 100644 --- a/sal/osl/unx/process.cxx +++ b/sal/osl/unx/process.cxx @@ -1023,7 +1023,7 @@ oslProcessError SAL_CALL osl_getProcessInfo(oslProcess Process, oslProcessData F int fd; sal_Char name[PATH_MAX + 1]; - snprintf(name, sizeof(name), "/proc/%u", pid); + snprintf(name, sizeof(name), "/proc/%ld", (long)pid); if ((fd = open(name, O_RDONLY)) >= 0) { |