diff options
author | Steve Hay <SteveHay@planit.com> | 2005-06-24 12:27:45 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-06-24 12:27:45 +0000 |
commit | 0e06f75d89a762be9731eb40ee14d8535e1ae184 (patch) | |
tree | 10c8e43d45816ceb9d481106827e82f60406d27a /wince | |
parent | 4184c77b776c43b48baa00b97fea5ee8fffe0f6a (diff) | |
download | perl-0e06f75d89a762be9731eb40ee14d8535e1ae184.tar.gz |
Make opendir() filename const in Win32-land & friends
That fact that it wasn't const already was highlighted by a warning
from pp_open_dir() generated by change 24743. Rather than undo the
const change in pp_open_dir(), this seems to make more sense. Hope I
haven't broken Netware or WinCE.
p4raw-id: //depot/perl@24974
Diffstat (limited to 'wince')
-rw-r--r-- | wince/perlhost.h | 2 | ||||
-rw-r--r-- | wince/wince.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/wince/perlhost.h b/wince/perlhost.h index 9e93b571e2..a71f108e7a 100644 --- a/wince/perlhost.h +++ b/wince/perlhost.h @@ -1144,7 +1144,7 @@ PerlDirClose(struct IPerlDir* piPerl, DIR *dirp) } DIR* -PerlDirOpen(struct IPerlDir* piPerl, char *filename) +PerlDirOpen(struct IPerlDir* piPerl, const char *filename) { return win32_opendir(filename); } diff --git a/wince/wince.c b/wince/wince.c index 40b578e755..c73c4b82a4 100644 --- a/wince/wince.c +++ b/wince/wince.c @@ -643,7 +643,7 @@ Perl_do_exec(pTHX_ char *cmd) * return the pointer to the current file name. */ DllExport DIR * -win32_opendir(char *filename) +win32_opendir(const char *filename) { dTHX; DIR *dirp; @@ -822,7 +822,7 @@ win32_closedir(DIR *dirp) /////!!!!!!!!!!! return here and do right stuff!!!! DllExport DIR * -win32_opendir(char *filename) +win32_opendir(const char *filename) { return opendir(filename); } |