X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fcommon%2Ferror.h;h=4350408e6aa3fb8159721a90d29e54d85d75a027;hb=f37d259d342af1ff8855d9eaa578cb7a3cfcc4f2;hp=f927078f17726f4e4bb4a755ce16c73e3ab93caa;hpb=97e190465f6a2a7d5bf72f445bb4d9d8544a0916;p=lttng-tools.git diff --git a/src/common/error.h b/src/common/error.h index f927078f1..4350408e6 100644 --- a/src/common/error.h +++ b/src/common/error.h @@ -1,18 +1,18 @@ /* * Copyright (C) 2011 - David Goulet * - * 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 the Free - * Software Foundation; only version 2 of the License. - * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2 only, + * as published by the Free Software Foundation. + * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. - * - * You should have received a copy of the GNU General Public License along with - * this program; if not, write to the Free Software Foundation, Inc., 59 Temple - * Place - Suite 330, Boston, MA 02111-1307, USA. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef _ERROR_H @@ -64,6 +64,8 @@ extern int lttng_opt_verbose; #define MSG(fmt, args...) \ __lttng_print(PRINT_MSG, fmt "\n", ## args) +#define _MSG(fmt, args...) \ + __lttng_print(PRINT_MSG, fmt, ## args) #define ERR(fmt, args...) \ __lttng_print(PRINT_ERR, "Error: " fmt "\n", ## args) #define WARN(fmt, args...) \