aboutsummaryrefslogtreecommitdiff
path: root/libnos_transport
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@google.com>2017-09-28 14:38:26 +0800
committerBill Richardson <wfrichar@google.com>2017-09-28 14:40:19 +0800
commite7f9c7ade232d5241796aa49b57704788b19dc3f (patch)
tree38a8dc27cd46118dba98c0703047bae8f6eccc79 /libnos_transport
parent3696694c771ada4417fb5de8d405162fe15aebcf (diff)
downloadgeneric-e7f9c7ade232d5241796aa49b57704788b19dc3f.tar.gz
Provide missing file descriptor to fprintf()
Oops. Change-Id: I35bf99d564546af013dd0e7c2bce628f0fe3b8c8 Signed-off-by: Bill Richardson <wfrichar@google.com>
Diffstat (limited to 'libnos_transport')
-rw-r--r--libnos_transport/transport.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libnos_transport/transport.c b/libnos_transport/transport.c
index cd4765d..2e78056 100644
--- a/libnos_transport/transport.c
+++ b/libnos_transport/transport.c
@@ -42,7 +42,8 @@
/* Logging for other platforms */
#include <stdio.h>
-#define NLOGE(...) do { fprintf(stderr, __VA_ARGS__); fprintf("\n"); } while (0)
+#define NLOGE(...) do { fprintf(stderr, __VA_ARGS__); \
+ fprintf(stderr, "\n"); } while (0)
#define NLOGV(...) do { if (VERBOSE_LOG) { \
printf(__VA_ARGS__); printf("\n"); } } while (0)
#define NLOGD(...) do { if (DEBUG_LOG) { \