From 64ace3f88f559d007c0150d9b048b1db32380208 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Wed, 21 Jan 2009 15:03:03 +0000 Subject: Update the documentation of get_sv() to note that it calls Perl_gv_fetchpv(), and hence the 'create' argument is actually 'flags'. Fix core code and documentation that used TRUE or FALSE to use 0 or GV_ADD. --- symbian/symbian_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'symbian/symbian_utils.cpp') diff --git a/symbian/symbian_utils.cpp b/symbian/symbian_utils.cpp index b3eee0b5e9..e6483ef24c 100644 --- a/symbian/symbian_utils.cpp +++ b/symbian/symbian_utils.cpp @@ -171,7 +171,7 @@ extern "C" { } else { buf8.Format(_L8("Symbian error %d"), error); } - SV* sv = Perl_get_sv(aTHX_ "\005", TRUE); /* $^E or ${^OS_ERROR} */ + SV* sv = Perl_get_sv(aTHX_ "\005", GV_ADD); /* $^E or ${^OS_ERROR} */ if (!sv) return (char*)NullErr; sv_setpv(sv, (const char *)buf8.PtrZ()); -- cgit v1.2.1