xref: /OK3568_Linux_fs/buildroot/package/libuwsc/0002-fix-bad-indentation.patch (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1From 8cb416140741a596235b8acc46b2b119b13ebfab Mon Sep 17 00:00:00 2001
2From: Rosen Penev <rosenp@gmail.com>
3Date: Tue, 6 Jul 2021 21:01:52 -0700
4Subject: [PATCH] fix bad indentation
5
6Fixes error with GCC11.
7
8[Retrieved from:
9https://github.com/zhaojh329/libuwsc/commit/8cb416140741a596235b8acc46b2b119b13ebfab]
10Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
11---
12 src/lua/uwsc_lua.c | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/src/lua/uwsc_lua.c b/src/lua/uwsc_lua.c
16index de6932e..84689fe 100644
17--- a/src/lua/uwsc_lua.c
18+++ b/src/lua/uwsc_lua.c
19@@ -178,7 +178,7 @@ static int uwsc_lua_on(lua_State *L)
20     else
21         luaL_argcheck(L, false, 2, "available event name: open message error close");
22
23-	return 0;
24+    return 0;
25 }
26
27 static int __uwsc_lua_send(lua_State *L, int op)
28