diff options
| author | Garrett D'Amore <garrett@damore.org> | 2016-12-19 00:06:12 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2016-12-19 00:06:12 -0800 |
| commit | 8d09339679c64a00576ac99724f36973730efe28 (patch) | |
| tree | 230a4c62e52902073bfb2b8433cb4c5ca8eb276e | |
| parent | 4847c64536a5c8be22051c93939034b308d1e717 (diff) | |
| download | nng-8d09339679c64a00576ac99724f36973730efe28.tar.gz nng-8d09339679c64a00576ac99724f36973730efe28.tar.bz2 nng-8d09339679c64a00576ac99724f36973730efe28.zip | |
fix windows compilation bug (colon instead of semicolon)
| -rw-r--r-- | tests/convey.h | 1 | ||||
| -rw-r--r-- | tests/test.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/tests/convey.h b/tests/convey.h index d311acb2..b9851996 100644 --- a/tests/convey.h +++ b/tests/convey.h @@ -1,4 +1,3 @@ - /* * Copyright 2016 Garrett D'Amore <garrett@damore.org> * diff --git a/tests/test.c b/tests/test.c index a133b677..26c4eb8c 100644 --- a/tests/test.c +++ b/tests/test.c @@ -537,7 +537,7 @@ init_specific(void) if ((keyctx = TlsAlloc()) == TLS_OUT_OF_INDEXES) { return (-1); } - return (0): + return (0); } static int |
