|
From: Nicholas N. <nj...@ca...> - 2004-07-02 15:28:41
|
CVS commit by nethercote:
Fix meaningless typo.
M +2 -2 cg_main.c 1.67
--- valgrind/cachegrind/cg_main.c #1.66:1.67
@@ -351,5 +351,5 @@ static Int compute_BBCC_array_size(UCode
static __inline__
-file_node* new_file_node(Char filename[FILENAME_LEN], file_node* next)
+file_node* new_file_node(Char filename[], file_node* next)
{
Int i;
@@ -364,5 +364,5 @@ file_node* new_file_node(Char filename[F
static __inline__
-fn_node* new_fn_node(Char fn_name[FILENAME_LEN], fn_node* next)
+fn_node* new_fn_node(Char fn_name[], fn_node* next)
{
Int i;
|