summaryrefslogtreecommitdiff
path: root/src/atcmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/atcmd.c')
-rw-r--r--src/atcmd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/atcmd.c b/src/atcmd.c
index 97fd34b..76ee98c 100644
--- a/src/atcmd.c
+++ b/src/atcmd.c
@@ -1471,7 +1471,7 @@ static int sms_atcmd_init(int fd)
return 0;
}
-static char *lock_path;
+static int lock_file;
int sms_device_close(int fd)
{
@@ -1498,8 +1498,8 @@ int sms_device_open(void)
return -1;
}
- lock_path = device_lock(Global.core.device);
- if (!lock_path) {
+ lock_file = device_lock(Global.core.device);
+ if (lock_file < 0) {
sms_device_close(fd);
return -1;
}
@@ -1570,4 +1570,4 @@ int is_quectel_model()
}
return 0;
-}
+} \ No newline at end of file