From 514d955ded1ad3ca20e22ee3dddeabf0c3b84296 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Mon, 11 Apr 2005 00:08:08 +0000 Subject: * symbols.c (symbol_X_add_number): Change return type to "offsetT *". * symbols.h (symbol_X_add_number): Update prototype. --- gas/symbols.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gas/symbols.c') diff --git a/gas/symbols.c b/gas/symbols.c index c8773f1..002ae35 100644 --- a/gas/symbols.c +++ b/gas/symbols.c @@ -2024,15 +2024,15 @@ symbol_set_value_expression (symbolS *s, const expressionS *exp) /* Return a pointer to the X_add_number component of a symbol. */ -valueT * +offsetT * symbol_X_add_number (symbolS *s) { #ifdef BFD_ASSEMBLER if (LOCAL_SYMBOL_CHECK (s)) - return &((struct local_symbol *) s)->lsy_value; + return (offsetT *) &((struct local_symbol *) s)->lsy_value; #endif - return (valueT *)&s->sy_value.X_add_number; + return &s->sy_value.X_add_number; } /* Set the value of SYM to the current position in the current segment. */ -- cgit v1.1