diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-08-18 00:04:00 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-08-18 00:04:00 +0300 |
commit | 5ff642c98760e0aec4de6b334a187cb9b4484aa7 (patch) | |
tree | 59976220b85ad2afd5ad377acf61dc0894edb023 | |
parent | 320456600681114cfa1b86ab29eda4d0524ab948 (diff) | |
download | covsrv-5ff642c98760e0aec4de6b334a187cb9b4484aa7.tar.gz covsrv-5ff642c98760e0aec4de6b334a187cb9b4484aa7.zip |
+ Avoid polluting global linking namespace
-rw-r--r-- | src/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client.c b/src/client.c index e95bb0f..eed9181 100644 --- a/src/client.c +++ b/src/client.c @@ -13,7 +13,7 @@ #include <covsrv/covsrv.h> -int sock = -1; +static int sock = -1; int covsrv_init() { |