summaryrefslogtreecommitdiff
path: root/source3/smbwrapper/stat.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/smbwrapper/stat.c')
-rw-r--r--source3/smbwrapper/stat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbwrapper/stat.c b/source3/smbwrapper/stat.c
index 8980f75f97..6721d41211 100644
--- a/source3/smbwrapper/stat.c
+++ b/source3/smbwrapper/stat.c
@@ -21,7 +21,7 @@
#include "wrapper.h"
- int __xstat(int vers, __const char *name, struct stat *st)
+ int __xstat(int vers, const char *name, struct stat *st)
{
struct kernel_stat kbuf;
int ret;
@@ -83,7 +83,7 @@
}
}
- int stat(__const char *name, struct stat *st)
+ int stat(const char *name, struct stat *st)
{
return __xstat(_STAT_VER, name, st);
}