X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fsnprintf.c;h=e69cf9c66ec65a3c8d0e46152ea4a006d622ca6b;hb=db93359f0cbf9a1e9dc81ea05f7b8662f843ae3d;hp=fccf3b0dd73f14c2e46dc76d426fbfe1bae7eab8;hpb=021f5586a328c6600460aa9f9be664ba19ba20d4;p=yaz-moved-to-github.git diff --git a/src/snprintf.c b/src/snprintf.c index fccf3b0..e69cf9c 100644 --- a/src/snprintf.c +++ b/src/snprintf.c @@ -2,7 +2,7 @@ * Copyright (C) 2007, Index Data ApS * See the file LICENSE for details. * - * $Id: snprintf.c,v 1.1 2007-02-23 10:15:01 adam Exp $ + * $Id: snprintf.c,v 1.2 2007-02-26 14:24:00 adam Exp $ */ /** * \file snprintf.c @@ -15,7 +15,7 @@ void yaz_vsnprintf(char *buf, size_t size, const char *fmt, va_list ap) { -#if HAVE_VSNPRINF +#if HAVE_VSNPRINTF vsnprintf(buf, size, fmt, ap); #else #ifdef WIN32