Skip to content
Snippets Groups Projects
Commit e71c279c authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Elminate meaningless typecast

parent cf632ed4
No related branches found
No related tags found
No related merge requests found
......@@ -517,7 +517,7 @@ void sbbs_t::useredit(int usernumber)
if (!noyes(text[UeditCopyUserQ])) {
bputs(text[UeditCopyUserToSlot]);
i = getnum(lastuser(&cfg));
if ((int)i > 0) {
if (i > 0) {
user.number = i;
putusername(&cfg, user.number, user.alias);
putuserdat(&user);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment