diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-01-18 16:35:49 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-02-07 21:36:39 +0100 |
commit | 8cfd50889e97cc01470bc953ac32efa0d7c4eaa6 (patch) | |
tree | 933484b2427d6b31c8a0f32419d58ee4903e65be /perl-install/c | |
parent | 5eb630b080a5566359773bb38fd6e2f31e32459a (diff) | |
download | drakx-8cfd50889e97cc01470bc953ac32efa0d7c4eaa6.tar drakx-8cfd50889e97cc01470bc953ac32efa0d7c4eaa6.tar.gz drakx-8cfd50889e97cc01470bc953ac32efa0d7c4eaa6.tar.bz2 drakx-8cfd50889e97cc01470bc953ac32efa0d7c4eaa6.tar.xz drakx-8cfd50889e97cc01470bc953ac32efa0d7c4eaa6.zip |
use NULL rather than 0 for pointers
Diffstat (limited to 'perl-install/c')
-rwxr-xr-x | perl-install/c/stuff.xs.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/c/stuff.xs.pl b/perl-install/c/stuff.xs.pl index ee5984c4f..007947332 100755 --- a/perl-install/c/stuff.xs.pl +++ b/perl-install/c/stuff.xs.pl @@ -178,7 +178,7 @@ init_setlocale() setlocale(LC_NUMERIC, "C"); /* otherwise eval "1.5" returns 1 in fr_FR for example */ char * -setlocale(category, locale = 0) +setlocale(category, locale = NULL) int category char * locale |