aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnatol Pomazau <anatol@google.com>2012-02-13 17:37:14 -0800
committerAnatol Pomazau <anatol@google.com>2012-02-13 18:12:18 -0800
commitfc656103dba298dbab1377ab07060068f50a5f83 (patch)
tree2eca7bfc59969af1cba64c450c406432fb18ab42
parentca2074b78d44ce5fb60fae64da84e53c2b82cb8a (diff)
downloadsystem_core-fc656103dba298dbab1377ab07060068f50a5f83.tar.gz
system_core-fc656103dba298dbab1377ab07060068f50a5f83.tar.bz2
system_core-fc656103dba298dbab1377ab07060068f50a5f83.zip
Fix 'extra tokens at end of #endif directive' warning
Change-Id: I464ede415e64cf7db845bb441754120974bcf855
-rw-r--r--adb/transport_local.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/adb/transport_local.c b/adb/transport_local.c
index d985ee3a..105c502e 100644
--- a/adb/transport_local.c
+++ b/adb/transport_local.c
@@ -318,7 +318,7 @@ void local_init(int port)
/* Running inside the device: use TCP socket as the transport. */
func = server_socket_thread;
}
-#endif !ADB_HOST
+#endif // !ADB_HOST
}
D("transport: local %s init\n", HOST ? "client" : "server");