Index: generic/gdbtk-bp.c =================================================================== RCS file: /cvs/src/src/gdb/gdbtk/generic/gdbtk-bp.c,v retrieving revision 1.39 diff -u -p -r1.39 gdbtk-bp.c --- generic/gdbtk-bp.c 8 Apr 2011 23:32:42 -0000 1.39 +++ generic/gdbtk-bp.c 9 Apr 2011 04:24:26 -0000 @@ -831,7 +831,7 @@ tracepoint_exists (char *args) char *file = NULL; int result = -1; - sals = decode_line_1 (&args, 1, NULL, 0, NULL, NULL); + sals = decode_line_1 (&args, 1, NULL, 0, NULL); if (sals.nelts == 1) { resolve_sal_pc (&sals.sals[0]); Index: generic/gdbtk-cmds.c =================================================================== RCS file: /cvs/src/src/gdb/gdbtk/generic/gdbtk-cmds.c,v retrieving revision 1.119 diff -u -p -r1.119 gdbtk-cmds.c --- generic/gdbtk-cmds.c 8 Apr 2011 23:32:42 -0000 1.119 +++ generic/gdbtk-cmds.c 9 Apr 2011 04:24:27 -0000 @@ -961,7 +961,7 @@ gdb_get_line_command (ClientData clientD } args = Tcl_GetStringFromObj (objv[1], NULL); - sals = decode_line_1 (&args, 1, NULL, 0, NULL, NULL); + sals = decode_line_1 (&args, 1, NULL, 0, NULL); if (sals.nelts == 1) { Tcl_SetIntObj (result_ptr->obj_ptr, sals.sals[0].line); @@ -997,7 +997,7 @@ gdb_get_file_command (ClientData clientD } args = Tcl_GetStringFromObj (objv[1], NULL); - sals = decode_line_1 (&args, 1, NULL, 0, NULL, NULL); + sals = decode_line_1 (&args, 1, NULL, 0, NULL); if (sals.nelts == 1) { Tcl_SetStringObj (result_ptr->obj_ptr, @@ -1033,7 +1033,7 @@ gdb_get_function_command (ClientData cli } args = Tcl_GetStringFromObj (objv[1], NULL); - sals = decode_line_1 (&args, 1, NULL, 0, NULL, NULL); + sals = decode_line_1 (&args, 1, NULL, 0, NULL); if (sals.nelts == 1) { resolve_sal_pc (&sals.sals[0]); Index: generic/gdbtk-stack.c =================================================================== RCS file: /cvs/src/src/gdb/gdbtk/generic/gdbtk-stack.c,v retrieving revision 1.35 diff -u -p -r1.35 gdbtk-stack.c --- generic/gdbtk-stack.c 8 Apr 2011 23:32:42 -0000 1.35 +++ generic/gdbtk-stack.c 9 Apr 2011 04:24:27 -0000 @@ -298,7 +298,7 @@ gdb_get_vars_command (ClientData clientD if (objc == 2) { args = Tcl_GetStringFromObj (objv[1], NULL); - sals = decode_line_1 (&args, 1, NULL, 0, NULL, NULL); + sals = decode_line_1 (&args, 1, NULL, 0, NULL); if (sals.nelts == 0) { gdbtk_set_result (interp, "error decoding line");