X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fsnprintf.c;h=0221f977b31cd1ed6ae078e3986fbc6fafe2856e;hb=138fbf3c4582f2738e5b30e440994c9b6d76e194;hp=fccf3b0dd73f14c2e46dc76d426fbfe1bae7eab8;hpb=021f5586a328c6600460aa9f9be664ba19ba20d4;p=yaz-moved-to-github.git diff --git a/src/snprintf.c b/src/snprintf.c index fccf3b0..0221f97 100644 --- a/src/snprintf.c +++ b/src/snprintf.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 2007, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2008 Index Data * See the file LICENSE for details. - * - * $Id: snprintf.c,v 1.1 2007-02-23 10:15:01 adam Exp $ */ /** * \file snprintf.c @@ -15,7 +13,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