summaryrefslogtreecommitdiffstats
path: root/apps/ts.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-03-21 16:24:30 +0000
committerMatt Caswell <matt@openssl.org>2016-03-21 16:35:58 +0000
commit7188f1f650e1130dbf0574c8276c0eb8cdbf0617 (patch)
treea907df4bb990d51022512fb70d12893d33174bdc /apps/ts.c
parentf9e550341281b0d344f7a5e7ac2ace79f88a3184 (diff)
Fix no-ts with --strict-warnings
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'apps/ts.c')
-rw-r--r--apps/ts.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/ts.c b/apps/ts.c
index 1872422468..44e6004c78 100644
--- a/apps/ts.c
+++ b/apps/ts.c
@@ -57,8 +57,9 @@
*/
#include <openssl/opensslconf.h>
-#ifndef OPENSSL_NO_TS
-
+#ifdef OPENSSL_NO_TS
+NON_EMPTY_TRANSLATION_UNIT
+#else
# include <stdio.h>
# include <stdlib.h>
# include <string.h>