This is the mail archive of the gdb-patches@sources.redhat.com 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]

PATCH: make error message complete sentence



2001-11-29  Jim Blandy  <jimb@redhat.com>

	* values.c (value_being_returned): Make error message a proper
 	sentence.

Index: gdb/values.c
===================================================================
RCS file: /cvs/cvsfiles/devo/gdb/values.c,v
retrieving revision 1.136
diff -c -r1.136 values.c
*** gdb/values.c	2001/11/10 03:02:20	1.136
--- gdb/values.c	2001/11/29 17:35:26
***************
*** 1388,1394 ****
        {
  	addr = EXTRACT_STRUCT_VALUE_ADDRESS (retbuf);
  	if (!addr)
! 	  error ("Function return value unknown");
  	return value_at (valtype, addr, NULL);
        }
  
--- 1388,1394 ----
        {
  	addr = EXTRACT_STRUCT_VALUE_ADDRESS (retbuf);
  	if (!addr)
! 	  error ("Function return value unknown.");
  	return value_at (valtype, addr, NULL);
        }
  


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