diff options
author | shennetsind <ind@henn.et> | 2013-05-30 22:59:02 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-05-30 22:59:02 -0300 |
commit | 401136e19ea7986acd9a57c54e0a6fa4594186c9 (patch) | |
tree | 030e469a9ca7507bb4983d6fc422f5caf34ea978 /src/map/clif.c | |
parent | f6bca33e1524354a28223f14e45d4765fcb06c92 (diff) | |
download | hercules-401136e19ea7986acd9a57c54e0a6fa4594186c9.tar.gz hercules-401136e19ea7986acd9a57c54e0a6fa4594186c9.tar.bz2 hercules-401136e19ea7986acd9a57c54e0a6fa4594186c9.tar.xz hercules-401136e19ea7986acd9a57c54e0a6fa4594186c9.zip |
Follow up 20bdc01fa687b174a732be4483ddea4982d67ce9
Fixed warnings pinpointed by mkbu95 (THANKS)
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 99b4d8c11..b73c7ac31 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -15569,7 +15569,7 @@ void clif_font(struct map_session_data *sd) * Instancing Window *------------------------------------------*/ int clif_instance(int instance_id, int type, int flag) { - struct map_session_data *sd; + struct map_session_data *sd = NULL; unsigned char buf[255]; enum send_target target = PARTY; |