From fe26b7c09f86650d19b4be388c155af081388a67 Mon Sep 17 00:00:00 2001 From: Jose Antonio Ortega Ruiz Date: Tue, 9 Apr 2002 23:28:19 +0000 Subject: portability fix: snprintf -> g_snprintf --- mixlib/xmix_vm_command.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mixlib/xmix_vm_command.c') diff --git a/mixlib/xmix_vm_command.c b/mixlib/xmix_vm_command.c index 32acc92..211c1bf 100644 --- a/mixlib/xmix_vm_command.c +++ b/mixlib/xmix_vm_command.c @@ -1,9 +1,9 @@ /* -*-c-*- -------------- xmix_vm_command.c : * Implementation of the functions declared in xmix_vm_command.h * ------------------------------------------------------------------ - * Last change: Time-stamp: "01/08/26 15:27:53 jao" + * $Id: xmix_vm_command.c,v 1.3 2002/04/09 23:28:19 jao Exp $ * ------------------------------------------------------------------ - * Copyright (C) 2001 Free Software Foundation, Inc. + * Copyright (C) 2001, 2002 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -57,7 +57,7 @@ log_error_ (mix_vm_cmd_dispatcher_t *dis, const gchar *fmt, ...) { va_list args; va_start (args, fmt); - snprintf (BUFFER, BUFF_SIZE, "ERROR: %s\n", fmt); + g_snprintf (BUFFER, BUFF_SIZE, "ERROR: %s\n", fmt); vfprintf (dis->err, BUFFER, args); va_end (args); } -- cgit v1.2.3