mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
libsysprof-capture: Use unlink() rather than g_unlink()
They’re equivalent. Signed-off-by: Philip Withnall <withnall@endlessm.com> Helps: #40
This commit is contained in:
@ -988,7 +988,7 @@ handle_errno:
|
||||
if (fd != -1)
|
||||
{
|
||||
close (fd);
|
||||
g_unlink (filename);
|
||||
unlink (filename);
|
||||
}
|
||||
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user