1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-12-22 15:58:50 -05:00

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>
This commit is contained in:
Dan McGee 2010-05-04 23:38:52 -05:00
parent 2a6f3f0652
commit 4f80993933

View File

@ -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);