diff options
author | Dan McGee <dan@archlinux.org> | 2010-05-05 06:38:52 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-05-05 06:38:52 +0200 |
commit | 4f80993933a3feee68758c27c58e9cf5d84bf20e (patch) | |
tree | 719532f3b9a6452859d72b9ca597f58634ebfbb9 | |
parent | 2a6f3f06528149200e4fc8996c0c1e6d2bfa5480 (diff) | |
download | pacman-4f80993933a3feee68758c27c58e9cf5d84bf20e.tar.gz pacman-4f80993933a3feee68758c27c58e9cf5d84bf20e.tar.xz |
Remove call to function logger
It isn't really necessary here and it helps us get rid of some link
pollution so we can have a slim vercmp binary.
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | lib/libalpm/version.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/libalpm/version.c b/lib/libalpm/version.c index 1c838f41..fb327df3 100644 --- a/lib/libalpm/version.c +++ b/lib/libalpm/version.c @@ -21,7 +21,6 @@ #include <ctype.h> /* libalpm */ -#include "log.h" #include "util.h" /** Compare two version strings and determine which one is 'newer'. @@ -50,8 +49,6 @@ int SYMEXPORT alpm_pkg_vercmp(const char *a, const char *b) int isnum; int ret = 0; - ALPM_LOG_FUNC; - /* libalpm added code. ensure our strings are not null */ if(!a) { if(!b) return(0); |