Skip to content

Commit 9f92e09

Browse files
committed
removed another positional refs in printf format
1 parent 724eaff commit 9f92e09

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/video_rxtx/rtp.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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-
"\tsysctl -w kern.ipc.maxsockbuf=%2$d\n"
266+
"\tsysctl -w kern.ipc.maxsockbuf=%d\n"
267267
#endif
268-
"\tsysctl -w " SYSCTL_ENTRY "=%1$d\n"
268+
"\tsysctl -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
}

0 commit comments

Comments
 (0)