From 7c22824981467d7ecea4f8ce6d396b28ba5c68d4 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 9 Feb 2015 11:16:01 -0600 Subject: [PATCH] Oop.. forgot a semicolon in a preceding commit --- libc/unistd/lib_execl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/unistd/lib_execl.c b/libc/unistd/lib_execl.c index 5a2b9c0e5f..040941c170 100644 --- a/libc/unistd/lib_execl.c +++ b/libc/unistd/lib_execl.c @@ -141,7 +141,7 @@ int execl(FAR const char *path, ...) { /* Check if the next argument is present */ - arg = va_arg(ap, FAR char *) + arg = va_arg(ap, FAR char *); if (arg) { /* Yes.. increment the number of arguments. Here is a sanity