Skip to content

Commit

Permalink
[rp-download] rp-download.cpp: Missing comma.
Browse files Browse the repository at this point in the history
This fixes a regression from commit b99b902.
(Make sure futex_time64() is defined before attempting to use it.)
  • Loading branch information
GerbilSoft committed Feb 1, 2025
1 parent b99b902 commit d706647
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rp-download/rp-download.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ int RP_C_API _tmain(int argc, TCHAR *argv[])
SCMP_SYS(fsetxattr),
SCMP_SYS(futex),
#if defined(__SNR_futex_time64) || defined(__NR_futex_time64)
SCMP_SYS(futex_time64)
SCMP_SYS(futex_time64),
#endif /* __SNR_futex_time64 || __NR_futex_time64 */
SCMP_SYS(getdents), SCMP_SYS(getdents64),
SCMP_SYS(getppid), // for bubblewrap verification
Expand Down

0 comments on commit d706647

Please sign in to comment.