This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

committed PATCH: fix typo in timeout error message


I was getting a TCL error after hitting a timeout in gdb_load_cmd. I've committed the attached patch as obvious.

-Sandra


2008-03-07  Sandra Loosemore  <sandra@codesourcery.com>

	gdb/testsuite/
	* lib/gdb.exp (gdb_load_cmd): Fix $args typo in timeout error message.
Index: lib/gdb.exp
===================================================================
*** lib/gdb.exp	(revision 195786)
--- lib/gdb.exp	(working copy)
*************** proc gdb_load_cmd { args } {
*** 2126,2132 ****
  	    return -1
  	}
  	timeout {
! 	    perror "Timed out trying to load $arg."
  	    return -1
  	}
      }
--- 2126,2132 ----
  	    return -1
  	}
  	timeout {
! 	    perror "Timed out trying to load $args."
  	    return -1
  	}
      }

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]