diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2019-07-09 08:16:20 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2019-07-09 08:00:37 +0000 |
commit | 28720882da28205568591a8b59f6565200d201af (patch) | |
tree | a768ab7a58a18b74028dfdcf93c6dc0a96726398 | |
parent | edf934b179dcd521b519fe8c973c615f48159c61 (diff) |
Fix invalid TRACE setting in print version
Bug-AGL: SPEC-2617
Change-Id: Ia935aab3b0b508e7a916e334237c639efb1feb15
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
-rw-r--r-- | src/afb-args.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afb-args.c b/src/afb-args.c index ed14a731..60360749 100644 --- a/src/afb-args.c +++ b/src/afb-args.c @@ -366,7 +366,7 @@ static void printVersion(FILE * file) #endif "HOOK " -#if WITH_TRACE +#if WITH_AFB_TRACE "+" #else "-" |