1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

r7477: Add MPR_TYPE_PTR to ejs_typeof().

This commit is contained in:
Tim Potter 2005-06-11 02:39:14 +00:00 committed by Gerald (Jerry) Carter
parent f5102b886c
commit 8574f64ca2

View File

@ -44,7 +44,8 @@ static int ejs_typeof(MprVarHandle eid, int argc, struct MprVar **argv)
{ MPR_TYPE_OBJECT, "object" },
{ MPR_TYPE_FUNCTION, "function" },
{ MPR_TYPE_STRING, "string" },
{ MPR_TYPE_STRING_CFUNCTION, "function" }
{ MPR_TYPE_STRING_CFUNCTION, "function" },
{ MPR_TYPE_PTR, "C pointer" }
};
int i;
const char *type = NULL;