mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
Fixes copy/paste error in comment
This commit is contained in:
parent
4839044063
commit
87265897e1
1 changed files with 1 additions and 1 deletions
|
@ -566,7 +566,7 @@ astring *astring_tolower(astring *str)
|
|||
{
|
||||
char *text;
|
||||
|
||||
/* just toupper() on all characters */
|
||||
/* just tolower() on all characters */
|
||||
for (text = str->text; *text != 0; text++)
|
||||
*text = tolower(*text);
|
||||
|
||||
|
|
Loading…
Reference in a new issue