Skip to content

Commit c4b0f13

Browse files
committed
Use system() instead of R_system()
1 parent 5b9395f commit c4b0f13

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/client.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ SEXP processx_base64_decode(SEXP array);
243243
const char* rimraf_tmpdir_cmd = NULL;
244244

245245
void term_handler(int n) {
246-
R_system(rimraf_tmpdir_cmd);
246+
system(rimraf_tmpdir_cmd);
247247

248248
// Continue signal
249249
raise(SIGTERM);

0 commit comments

Comments
 (0)