File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -260,20 +260,20 @@ void rtp_video_rxtx::display_buf_increase_warning(int size)
260260#endif
261261 log_msg (
262262 LOG_LEVEL_INFO,
263- " Please set " SYSCTL_ENTRY " value to %1$ d or greater (see also\n "
263+ " Please set " SYSCTL_ENTRY " value to %d or greater (see also\n "
264264 " https://github.com/CESNET/UltraGrid/wiki/OS-Setup-UltraGrid):\n "
265265#ifdef __APPLE__
266- " \t sysctl -w kern.ipc.maxsockbuf=%2$ d\n "
266+ " \t sysctl -w kern.ipc.maxsockbuf=%d\n "
267267#endif
268- " \t sysctl -w " SYSCTL_ENTRY " =%1$ d\n "
268+ " \t sysctl -w " SYSCTL_ENTRY " =%d\n "
269269 " To make this persistent, add these options (key=value) to "
270270 " /etc/sysctl.d/60-ultragrid.conf\n "
271271 " \n ***\n\n " ,
272- size
272+ size,
273273#ifdef __APPLE__
274- ,
275- size * 4
274+ size * 4 ,
276275#endif /* __APPLE__ */
276+ size
277277 );
278278#undef SYSCTL_ENTRY
279279}
You can’t perform that action at this time.
0 commit comments