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

[incubator-nuttx-apps] 01/02: netlib_parseurl.c: Appease nxstyle

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

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

commit 73a93e23707528904f33064f3efb0a62eff6707c
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Fri May 7 15:26:28 2021 +0900

    netlib_parseurl.c: Appease nxstyle
    
    The following errors are false positives.
    https://github.com/apache/incubator-nuttx/issues/387
    
    ```
    /Users/yamamoto/git/nuttx/apps/netutils/netlib/netlib_parseurl.c:57:13: error: C++ style comment
    /Users/yamamoto/git/nuttx/apps/netutils/netlib/netlib_parseurl.c:59:35: error: C++ style comment
    ```
---
 netutils/netlib/netlib_parseurl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/netutils/netlib/netlib_parseurl.c b/netutils/netlib/netlib_parseurl.c
index 28a83d4..9e46a32 100644
--- a/netutils/netlib/netlib_parseurl.c
+++ b/netutils/netlib/netlib_parseurl.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/netlib/netlib_parseurl.c
+ * apps/netutils/netlib/netlib_parseurl.c
  *
  *   Copyright (C) 2019 Gregory Nutt. All rights reserved.
  *   Author: Sebastien Lorquet <se...@lorquet.fr>