diff options
author | Derrell Lipman <derrell@samba.org> | 2006-10-02 02:38:43 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:20:29 -0500 |
commit | deca12d7be900dbf86065867840ae5500a398ae2 (patch) | |
tree | 66016adf187b8369610e401e71695a720b6e73e0 /source4/lib | |
parent | 882910a2a8f6e84509062d19720f4999af4761c4 (diff) | |
download | samba-deca12d7be900dbf86065867840ae5500a398ae2.tar.gz samba-deca12d7be900dbf86065867840ae5500a398ae2.tar.bz2 samba-deca12d7be900dbf86065867840ae5500a398ae2.zip |
r19021: match the prototype for a trigger function
(This used to be commit f2f191891582af7dcb6d38c14e4ef7afc361299a)
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/appweb/ejs/ejsProcs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/appweb/ejs/ejsProcs.c b/source4/lib/appweb/ejs/ejsProcs.c index adef6e898a..43fff4a40b 100644 --- a/source4/lib/appweb/ejs/ejsProcs.c +++ b/source4/lib/appweb/ejs/ejsProcs.c @@ -59,7 +59,7 @@ static int valueOfProc(EjsHandle eid, int argc, MprVar **argv); */ static MprVarTriggerStatus lengthTrigger(MprVarTriggerOp op, MprProperties *parentProperties, MprVar *prop, MprVar *newValue, - bool copyRef); + int copyRef); /******************************************************************************/ /* @@ -340,7 +340,7 @@ static int valueOfProc(EjsHandle eid, int argc, MprVar **argv) static MprVarTriggerStatus lengthTrigger(MprVarTriggerOp op, MprProperties *parentProperties, MprVar *prop, MprVar *newValue, - bool copyRef) + int copyRef) { switch (op) { case MPR_VAR_READ: |