summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/nshlib/nsh_usbdev.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/nshlib/nsh_usbdev.c b/apps/nshlib/nsh_usbdev.c
index 87689d5a2..40e35d5f4 100644
--- a/apps/nshlib/nsh_usbdev.c
+++ b/apps/nshlib/nsh_usbdev.c
@@ -128,13 +128,11 @@ int nsh_usbconsole(void)
fd = open(CONFIG_NSH_USBCONDEV, O_RDWR);
if (fd < 0)
{
- int errval = errno;
-
/* ENOTCONN means that the USB device is not yet connected. Anything
* else is bad.
*/
- DEBUGASSERT(errval == ENOTCONN);
+ DEBUGASSERT(errno == ENOTCONN);
/* Sleep a bit and try again */