summaryrefslogtreecommitdiff
path: root/taint.c
diff options
context:
space:
mode:
Diffstat (limited to 'taint.c')
-rw-r--r--taint.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/taint.c b/taint.c
index c0a71cb2d8..24fd487d75 100644
--- a/taint.c
+++ b/taint.c
@@ -14,13 +14,8 @@ Perl_taint_proper(pTHX_ const char *f, const char *s)
dTHR; /* just for taint */
char *ug;
-#if Uid_t_SIGN == -1
DEBUG_u(PerlIO_printf(Perl_debug_log,
- "%s %d %"IVdf" %"IVdf"\n", s, PL_tainted, (IV)PL_uid, (IV)PL_euid));
-#else
- DEBUG_u(PerlIO_printf(Perl_debug_log,
- "%s %d %"UVuf" %"UVuf"\n", s, PL_tainted, (UV)PL_uid, (UV)PL_euid));
-#endif
+ "%s %d %"Uid_t_f" %"Uid_t_f"\n", s, PL_tainted, PL_uid, PL_euid));
if (PL_tainted) {
if (!f)