diff options
Diffstat (limited to 'gcc/dbgcnt.c')
-rw-r--r-- | gcc/dbgcnt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/dbgcnt.c b/gcc/dbgcnt.c index 1e004d1656c..859aabff9d9 100644 --- a/gcc/dbgcnt.c +++ b/gcc/dbgcnt.c @@ -1,5 +1,5 @@ /* Debug counter for debugging support - Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc. + Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation, Inc. This file is part of GCC. @@ -88,7 +88,7 @@ dbg_cnt_set_limit_by_name (const char *name, int len, int value) if (i < 0) return false; - dbg_cnt_set_limit_by_index (i, value); + dbg_cnt_set_limit_by_index ((enum debug_counter) i, value); return true; } |