You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ag...@apache.org on 2021/03/17 10:08:18 UTC

[incubator-nuttx-apps] branch master updated: interpreters/quickjs: Fix typo in qjsmini.c

This is an automated email from the ASF dual-hosted git repository.

aguettouche pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new d66bc2c  interpreters/quickjs: Fix typo in qjsmini.c
d66bc2c is described below

commit d66bc2c1070cdbbb7c8e00ffa727a8515cf26eff
Author: Huang Qi <hu...@xiaomi.com>
AuthorDate: Wed Mar 17 15:24:00 2021 +0800

    interpreters/quickjs: Fix typo in qjsmini.c
    
    Signed-off-by: Huang Qi <hu...@xiaomi.com>
    Change-Id: I3ee4a6bde0df7d158a4b5339ec3ffc027d2f42a3
---
 interpreters/quickjs/qjsmini.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/interpreters/quickjs/qjsmini.c b/interpreters/quickjs/qjsmini.c
index e34cd01..45f8546 100644
--- a/interpreters/quickjs/qjsmini.c
+++ b/interpreters/quickjs/qjsmini.c
@@ -629,7 +629,7 @@ int main(int argc, char *argv[])
   if (OK != js_ext_init(ctx))
     {
       fprintf(stderr, "qjs: external context init failed\n");
-      goto fail_ctx;
+      goto fail;
     }
 #endif