Remove stray debugging printfs.

[originally from svn r2670]
This commit is contained in:
Ben Harris 2003-01-21 00:27:24 +00:00
Родитель 486d91c77c
Коммит 802ae23334
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -1,4 +1,4 @@
/* $Id: macstore.c,v 1.11 2003/01/18 20:09:21 ben Exp $ */
/* $Id: macstore.c,v 1.12 2003/01/21 00:27:24 ben Exp $ */
/*
* macstore.c: Macintosh-specific impementation of the interface
@ -99,7 +99,6 @@ static OSErr copy_resource(ResType restype, short resid)
Handle h;
Str255 resname;
fprintf(stderr, "getting resource %x, id %d\n", restype, resid);
h = GetResource(restype, resid);
if (h != NULL) {
GetResInfo(h, &resid, &restype, resname);
@ -108,7 +107,6 @@ static OSErr copy_resource(ResType restype, short resid)
if (ResError() == noErr)
WriteResource(h);
}
fprintf(stderr, "ResError() == %d\n", ResError());
return ResError();
}