projects
/
project
/
ubus.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
29d7092
)
lua: fix whitespaces and typo
author
Luka Perkov
<
[email protected]
>
Sun, 26 Jan 2014 17:32:10 +0000
(17:32 +0000)
committer
Jo-Philipp Wich
<
[email protected]
>
Tue, 28 Jan 2014 22:20:26 +0000
(22:20 +0000)
Signed-off-by: Luka Perkov <
[email protected]
>
lua/ubus.c
patch
|
blob
|
history
diff --git
a/lua/ubus.c
b/lua/ubus.c
index 84ee06bd1e37f5aca3d47920d03200baeeccc051..45ea3bb20c07d7b47cd1aca624d2343b61668abd 100644
(file)
--- a/
lua/ubus.c
+++ b/
lua/ubus.c
@@
-19,8
+19,8
@@
#include <lauxlib.h>
#include <lua.h>
-#define MODNAME "ubus"
-#define METANAME MODNAME ".meta"
+#define MODNAME
"ubus"
+#define METANAME MODNAME ".meta"
static lua_State *state;
@@
-417,7
+417,7
@@
static struct ubus_object* ubus_lua_load_object(lua_State *L)
obj->o.type->id = 0;
obj->o.type->methods = obj->o.methods;
- /* create the
he
callback lookup table */
+ /* create the callback lookup table */
lua_createtable(L, 1, 0);
lua_getglobal(L, "__ubus_cb");
lua_pushvalue(L, -2);