Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7745 → Rev 7746

/programs/cmm/lib/debug.h
42,18 → 42,13
debugch(10);
}
 
inline void debugi(dword d_int)
:void debugval(dword text,number)
{
char tmpch[12];
itoa_(#tmpch, d_int);
debugln(#tmpch);
}
 
:void debugval(dword text,number)
{
debug(text);
debug(": ");
debugi(number);
itoa_(#tmpch, number);
debugln(#tmpch);
}
 
#endif
/programs/cmm/lib/obj/iconv.h
37,10 → 37,9
cd = EAX;
if (cd!=0)
{
debugln("iconv: something is wrong with stdcall iconv()");
debugi(cd);
debug("in_len:"); debugi(in_len);
debug("out_len:"); debugi(out_len);
debugval("iconv: something is wrong with stdcall iconv()", cd);
debugval("in_len", in_len);
debugval("out_len", out_len);
new_buf = free(new_buf);
return 0;
}