diff options
author | epoque11 <epoque11@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-03-30 08:47:04 +0000 |
---|---|---|
committer | epoque11 <epoque11@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-03-30 08:47:04 +0000 |
commit | e32bcfd3af4b93b46d09cbe1080197b790a126bf (patch) | |
tree | 17e1772067f3a8caf9a7813e95624fbd1ced5cb9 /src/map/intif.c | |
parent | b558c22a6a21f943c3ee75243d84b00ecae6cbe7 (diff) | |
download | hercules-e32bcfd3af4b93b46d09cbe1080197b790a126bf.tar.gz hercules-e32bcfd3af4b93b46d09cbe1080197b790a126bf.tar.bz2 hercules-e32bcfd3af4b93b46d09cbe1080197b790a126bf.tar.xz hercules-e32bcfd3af4b93b46d09cbe1080197b790a126bf.zip |
- Fixed warning notice of nullpo_retv (follow up to r15816)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15817 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/intif.c')
-rw-r--r-- | src/map/intif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/intif.c b/src/map/intif.c index f84d57a19..61a60c91e 100644 --- a/src/map/intif.c +++ b/src/map/intif.c @@ -199,7 +199,7 @@ int intif_main_message(struct map_session_data* sd, const char* message) { char output[256]; - nullpo_retv(sd); + nullpo_ret(sd); // format the message for main broadcasting snprintf( output, sizeof(output), msg_txt(386), sd->status.name, message ); |