From 750c896b4a9e619bbc6f712f82b8d602a1750f96 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Sat, 9 Sep 2017 14:09:55 +0300 Subject: [PATCH] libosmogapk: rename the 'logging.c' to 'common.c' There are not so much code, related to internal logging subsystem. So, there is no reason to keep a few lines in a dedicated file. In the future one may also be used for other routines. --- src/Makefile.am | 4 ++-- src/{logging.c => common.c} | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) rename src/{logging.c => common.c} (97%) diff --git a/src/Makefile.am b/src/Makefile.am index 060d435..8efd165 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -76,9 +76,9 @@ libosmogapk_la_SOURCES += \ benchmark.c \ $(NULL) -# Logging +# Common routines libosmogapk_la_SOURCES += \ - logging.c \ + common.c \ $(NULL) # libosmogapk representative application diff --git a/src/logging.c b/src/common.c similarity index 97% rename from src/logging.c rename to src/common.c index 96313ae..1984d29 100644 --- a/src/logging.c +++ b/src/common.c @@ -17,6 +17,7 @@ * along with gapk. If not, see . */ +/* Internal GAPK logging */ int osmo_gapk_log_init_complete = 0; int osmo_gapk_log_subsys;