Fixed a typo, only 4 warnings left. --Rumble

This commit is contained in:
Rumble 2008-05-08 09:42:18 +00:00
parent 4f1403558a
commit 63c6808612
2 changed files with 4 additions and 6 deletions

View file

@ -3,12 +3,10 @@ help, find any bugs, or have ideas for improvement please stop by TBA at
telnet://tbamud.com:9091 or email rumble@tbamud.com --Rumble
tbaMUD 3.56
[May 08 2008] - Rumble
Cleaned up numerous warnings found by adding -Wextra -Wcast-qual -Wshadow -Wno-unused flags.
[May 05 2008] - Rumble
Changed command do_list_llog_entries to normal function, it was not being used as a command.
Changed command do_list_llog_entries to normal function
Changed command do_list_llog_entries to normal function
Changed command do_list_llog_entries to normal function
Changed command do_list_llog_entries to normal function
Changed command do_list_llog_entries to normal function, it was not being used as a command. (thanks Rhade)
Removed several useless if checks. (thanks Elanthis)
Fixed zmalloc to work on 64 bit machines.
[May 04 2008] - Rumble

View file

@ -1214,7 +1214,7 @@ ACMD(do_detach)
}
}
if (!arg3 == NULL || *arg3)
if (arg3 == NULL || *arg3)
send_to_char(ch, "You must specify a trigger to remove.\r\n");
else
trigger = arg3;