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

sentence.
This commit is contained in:
Jim Blandy
2001-11-29 17:37:38 +00:00
parent 1983fbac47
commit aead120c3f
2 changed files with 7 additions and 1 deletions

View File

@@ -1388,7 +1388,7 @@ value_being_returned (struct type *valtype, char *retbuf, int struct_return)
{
addr = EXTRACT_STRUCT_VALUE_ADDRESS (retbuf);
if (!addr)
error ("Function return value unknown");
error ("Function return value unknown.");
return value_at (valtype, addr, NULL);
}