summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChip Salzenberg <chip@perl.com>1997-03-30 11:48:07 +1200
committerChip Salzenberg <chip@atlantic.net>1997-04-01 12:01:35 +1200
commitc9d716f75179fb7a413359cd6453141dfe552e82 (patch)
tree15cefbe5466fc54e3bf1367e02073856f2fd54bd
parentd574b85ef38b533c29517c911f5b03db91196ab8 (diff)
downloadperl-c9d716f75179fb7a413359cd6453141dfe552e82.tar.gz
Don't use a completely empty macro parameter
-rw-r--r--sv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sv.h b/sv.h
index 39dc40efea..cf18061381 100644
--- a/sv.h
+++ b/sv.h
@@ -572,9 +572,9 @@ SV *newRV_noinc _((SV *));
}
#define SvSetSV(dst,src) \
- SvSetSV_and(dst,src,)
+ SvSetSV_and(dst,src,/*nothing*/;)
#define SvSetSV_nosteal(dst,src) \
- SvSetSV_nosteal_and(dst,src,)
+ SvSetSV_nosteal_and(dst,src,/*nothing*/;)
#define SvSetMagicSV(dst,src) \
SvSetSV_and(dst,src,SvSETMAGIC(dst))