Turn Quad_t to Uquad_t in unsigned branch
authorMarcus Holland-Moritz <mhx-perl@gmx.net>
Sat, 27 Dec 2003 02:48:19 +0000 (03:48 +0100)
committerNicholas Clark <nick@ccl4.org>
Sat, 27 Dec 2003 13:26:29 +0000 (13:26 +0000)
From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
Message-ID: <010001c3cc1b$813763a0$d500a8c0@R2D2>

p4raw-id: //depot/perl@21967

sv.c

diff --git a/sv.c b/sv.c
index 7eba778..9376345 100644 (file)
--- a/sv.c
+++ b/sv.c
@@ -9140,7 +9140,7 @@ Perl_sv_vcatpvfn(pTHX_ SV *sv, const char *pat, STRLEN patlen, va_list *args, SV
                case 'V':  uv = va_arg(*args, UV); break;
                default:   uv = va_arg(*args, unsigned); break;
 #ifdef HAS_QUAD
-               case 'q':  uv = va_arg(*args, Quad_t); break;
+               case 'q':  uv = va_arg(*args, Uquad_t); break;
 #endif
                }
            }