mirror of
https://github.com/samba-team/samba.git
synced 2025-11-08 16:23:49 +03:00
r12013: fix compiler warnings
metze
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
e5654f9791
commit
4d35c2b8e6
@@ -148,15 +148,15 @@ NTSTATUS ejs_push_hyper(struct ejs_rpc *ejs,
|
||||
}
|
||||
|
||||
NTSTATUS ejs_pull_dlong(struct ejs_rpc *ejs,
|
||||
struct MprVar *v, const char *name, uint64_t *r)
|
||||
struct MprVar *v, const char *name, int64_t *r)
|
||||
{
|
||||
return ejs_pull_hyper(ejs, v, name, r);
|
||||
return ejs_pull_hyper(ejs, v, name, (uint64_t *)r);
|
||||
}
|
||||
|
||||
NTSTATUS ejs_push_dlong(struct ejs_rpc *ejs,
|
||||
struct MprVar *v, const char *name, const uint64_t *r)
|
||||
struct MprVar *v, const char *name, const int64_t *r)
|
||||
{
|
||||
return ejs_push_hyper(ejs, v, name, r);
|
||||
return ejs_push_hyper(ejs, v, name, (const uint64_t *)r);
|
||||
}
|
||||
|
||||
NTSTATUS ejs_pull_udlong(struct ejs_rpc *ejs,
|
||||
|
||||
Reference in New Issue
Block a user