From e77ae9096a40707d3b878b46969a60a06656dc06 Mon Sep 17 00:00:00 2001 From: kc8apf Date: Tue, 10 Feb 2009 18:21:17 +0000 Subject: Use C89/C99/C++ compliant boolean types git-svn-id: svn://svn.berlios.de/openocd/trunk@1370 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- src/xsvf/xsvf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/xsvf') diff --git a/src/xsvf/xsvf.c b/src/xsvf/xsvf.c index 855021df..e3153a3e 100644 --- a/src/xsvf/xsvf.c +++ b/src/xsvf/xsvf.c @@ -201,11 +201,11 @@ static void xsvf_add_statemove(tap_state_t state) int j = (move >> i) & 1; if (j) { - curstate = tap_state_transition(curstate, TRUE); + curstate = tap_state_transition(curstate, true); } else { - curstate = tap_state_transition(curstate, FALSE); + curstate = tap_state_transition(curstate, false); } moves[i] = curstate; } -- cgit v1.2.3