This commit is contained in:
jl777
2019-04-02 02:24:31 -11:00
parent 57b769c44d
commit 8e84d8e0ea
2 changed files with 4 additions and 4 deletions

View File

@@ -2202,8 +2202,8 @@ char *komodo_pricename(char *name,int32_t ind)
return(0);
if ( ind < sizeof(Forex)/sizeof(*Forex) )
{
strcpy(name,Forex[ind]);
strcat(name,"USD");
name[0] = 'U', name[1] = 'S', name[2] = 'D';
strcpy(name+3,Forex[ind]);
return(name);
} else ind -= sizeof(Forex)/sizeof(*Forex);
}