From bf3f5d029bb0432fbae882b8d0465d7a9b01f896 Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Mon, 22 Oct 2012 12:16:37 +0800 Subject: fixes utils helper --- utils/utils_helper.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'utils/utils_helper.h') diff --git a/utils/utils_helper.h b/utils/utils_helper.h index 6a90cce..3eb6778 100644 --- a/utils/utils_helper.h +++ b/utils/utils_helper.h @@ -58,13 +58,13 @@ if (2 != g_strv_length(strs)) \ assert(false); \ \ - phrase_token_t token = atoi(strs[0]); \ + phrase_token_t _token = atoi(strs[0]); \ const char * phrase = strs[1]; \ - if (null_token != token) \ + if (null_token != _token) \ assert(taglib_validate_token_with_string \ - (phrase_index, token, phrase)); \ + (phrase_index, _token, phrase)); \ \ - var = token; \ + var = _token; \ \ g_strfreev(strs); \ } while(false); -- cgit