aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 12c7b314..61f116f6 100644
--- a/src/main.c
+++ b/src/main.c
@@ -592,7 +592,7 @@ static gint prohibit_duplicate_launch(void)
path = get_socket_name();
uxsock = fd_connect_unix(path);
if (uxsock < 0) {
- unlink(path);
+ g_unlink(path);
return fd_open_unix(path);
}
@@ -678,7 +678,7 @@ static gint lock_socket_remove(void)
gdk_input_remove(lock_socket_tag);
fd_close(lock_socket);
filename = get_socket_name();
- unlink(filename);
+ g_unlink(filename);
#endif
return 0;