]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix meaningless typo.
authorNicholas Nethercote <n.nethercote@gmail.com>
Fri, 2 Jul 2004 15:28:34 +0000 (15:28 +0000)
committerNicholas Nethercote <n.nethercote@gmail.com>
Fri, 2 Jul 2004 15:28:34 +0000 (15:28 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2456

cachegrind/cg_main.c

index 8d72ff42f4784d1370695c5f43b823c8565a2735..868535cd0ea01082465f664b13a1f73d38d12575 100644 (file)
@@ -350,7 +350,7 @@ static void get_debug_info(Addr instr_addr, Char filename[FILENAME_LEN],
 static Int compute_BBCC_array_size(UCodeBlock* cb);
 
 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;
    file_node* new = VG_(malloc)(sizeof(file_node));
@@ -363,7 +363,7 @@ file_node* new_file_node(Char filename[FILENAME_LEN], file_node* next)
 }
 
 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;
    fn_node* new = VG_(malloc)(sizeof(fn_node));