summaryrefslogtreecommitdiff
path: root/common/flatpak-run.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/flatpak-run.c')
-rw-r--r--common/flatpak-run.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/flatpak-run.c b/common/flatpak-run.c
index b03c215b..0579ce4c 100644
--- a/common/flatpak-run.c
+++ b/common/flatpak-run.c
@@ -1729,7 +1729,7 @@ flatpak_run_allocate_id (int *lock_fd_out)
* file and take a write lock on .ref to ensure its not in
* use. */
lock_fd = open (lock_file, O_RDWR | O_CREAT | O_CLOEXEC, 0644);
- /* There is a tiny race here between the open creating the file and the lock suceeding.
+ /* There is a tiny race here between the open creating the file and the lock succeeding.
We work around that by only gc:ing "old" .ref files */
if (lock_fd != -1 && fcntl (lock_fd, F_SETLK, &l) == 0)
{