summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2014-09-09 21:02:30 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2014-09-09 21:18:48 -0400
commit63113b9b575257da93eff0197eeb8fa62095a8f2 (patch)
treecd7ce86643fa1fefc0a4fa4b8e5458100d3d75cd /sv.c
parentc9bb7a9882c39b231d880b02c5764d79da379284 (diff)
downloadperl-63113b9b575257da93eff0197eeb8fa62095a8f2.tar.gz
Whitespace only.
I cannot stand looking at the inconsistent spaces any more.
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sv.c b/sv.c
index bd0dd08d5d..d1d6b0f46e 100644
--- a/sv.c
+++ b/sv.c
@@ -11897,7 +11897,7 @@ Perl_sv_vcatpvfn_flags(pTHX_ SV *const sv, const char *const pat, const STRLEN p
&& has_precis && intsize != 'q' ) { /* Shortcuts */
/* See earlier comment about buggy Gconvert when digits,
aka precis is 0 */
- if ( c == 'g' && precis) {
+ if ( c == 'g' && precis ) {
STORE_LC_NUMERIC_SET_TO_NEEDED();
PERL_UNUSED_RESULT(Gconvert((NV)fv, (int)precis, 0, PL_efloatbuf));
/* May return an empty string for digits==0 */
@@ -11905,7 +11905,7 @@ Perl_sv_vcatpvfn_flags(pTHX_ SV *const sv, const char *const pat, const STRLEN p
elen = strlen(PL_efloatbuf);
goto float_converted;
}
- } else if ( c == 'f' && !precis) {
+ } else if ( c == 'f' && !precis ) {
if ((eptr = F0convert(fv, ebuf + sizeof ebuf, &elen)))
break;
}