Hi! > +static void setup(void) > +{ > + char testfile[40]; > + > + sprintf(testfile, "dup206.%d", getpid()); > + fd = SAFE_OPEN(testfile, O_RDWR | O_CREAT, 0666); There is no reason to append the pid here, so I've changed this to just SAFE_OPEN("testfile", ...) and pushed, thanks. -- Cyril Hrubis chrubis@suse.cz