diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2021-04-17 18:42:38 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2021-04-17 18:42:38 (GMT) |
commit | 2599bee158206e96b30b3dc8a6f49aa8ada40975 (patch) | |
tree | 489cf2d6cf3fb73eed43f59fb454992c8019299e | |
parent | 58afc7858cffe180bafbae306db6be66d313b74b (diff) |
Fix a compilation warning about a label defined but not used.
-rw-r--r-- | src/core/paths.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/paths.c b/src/core/paths.c index 0bb59e7..21540bd 100644 --- a/src/core/paths.c +++ b/src/core/paths.c @@ -206,9 +206,13 @@ char *get_effective_directory_new(TargetDirectoryType type) } +#ifdef DISCARD_LOCAL + +# ifdef PYTHON_PACKAGE + bad_sync: -#ifdef DISCARD_LOCAL +# endif free(dyn_path_tmp); |