[libcroco] Ensure PEEK_NEXT_CHAR does not clash with existing variables
- From: РуÑлан Ижбулатов <ruslanizhb src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libcroco] Ensure PEEK_NEXT_CHAR does not clash with existing variables
- Date: Tue, 5 Aug 2014 11:58:38 +0000 (UTC)
commit 6824af55301f5b0844649f2104f58841f73f3e10
Author: РуÑлан Ижбулатов <lrn1986 gmail com>
Date: Tue Aug 5 08:28:52 2014 +0000
Ensure PEEK_NEXT_CHAR does not clash with existing variables
https://bugzilla.gnome.org/show_bug.cgi?id=710076
src/cr-parser.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/cr-parser.c b/src/cr-parser.c
index 0fa1ffa..0e319db 100644
--- a/src/cr-parser.c
+++ b/src/cr-parser.c
@@ -197,9 +197,9 @@ if ((a_status) != CR_OK) \
*/
#define PEEK_NEXT_CHAR(a_this, a_to_char) \
{\
-enum CRStatus status ; \
-status = cr_tknzr_peek_char (PRIVATE (a_this)->tknzr, a_to_char) ; \
-CHECK_PARSING_STATUS (status, TRUE) \
+enum CRStatus pnc_status ; \
+pnc_status = cr_tknzr_peek_char (PRIVATE (a_this)->tknzr, a_to_char) ; \
+CHECK_PARSING_STATUS (pnc_status, TRUE) \
}
/**
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]