mirror of
https://github.com/apache/nuttx.git
synced 2026-05-31 23:40:19 +08:00
nuttx: remove space befone newline in logs
Signed-off-by: Petro Karashchenko <petro.karashchenko@gmail.com>
This commit is contained in:
committed by
Xiang Xiao
parent
e68ffb9f99
commit
3ccb657dc2
@@ -82,7 +82,8 @@ static struct work_s g_sdcard_work;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
static struct pm_cpu_freqlock_s g_hv_lock =
|
static struct pm_cpu_freqlock_s g_hv_lock =
|
||||||
PM_CPUFREQLOCK_INIT(PM_CPUFREQLOCK_TAG('S','D',0), PM_CPUFREQLOCK_FLAG_HV);
|
PM_CPUFREQLOCK_INIT(PM_CPUFREQLOCK_TAG('S', 'D', 0),
|
||||||
|
PM_CPUFREQLOCK_FLAG_HV);
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Private Functions
|
* Private Functions
|
||||||
|
|||||||
+2
-1
@@ -1926,7 +1926,8 @@ int main(int argc, char **argv, char **envp)
|
|||||||
{
|
{
|
||||||
/* Check for URI schemes, e.g. "http://" or "https://" */
|
/* Check for URI schemes, e.g. "http://" or "https://" */
|
||||||
|
|
||||||
if (n == 0 || strncmp(&line[n - 1], "://", 3) != 0)
|
if ((ncomment == 0) &&
|
||||||
|
(n == 0 || strncmp(&line[n - 1], "://", 3) != 0))
|
||||||
{
|
{
|
||||||
ERROR("C++ style comment", lineno, n);
|
ERROR("C++ style comment", lineno, n);
|
||||||
n++;
|
n++;
|
||||||
|
|||||||
Reference in New Issue
Block a user