Subversion Repositories filter_foundry

Compare Revisions

Regard whitespace Rev 481 → Rev 482

/trunk/scripting.c
53,7 → 53,7
Handle h;
OSErr e = PIGetText(token, &h);
 
if (!e && h) {
if ((e == noErr) && h) {
n = PIGETHANDLESIZE(h);
p = PILOCKHANDLE(h, false);
if ((str = (char*)malloc(n + 1))) {