[vlc-commits] oldrc: fix format strings

Rémi Denis-Courmont git at videolan.org
Sun Apr 14 09:18:01 CEST 2019


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun Apr 14 10:03:30 2019 +0300| [318a2102eac854a68ab96cb646c386e0d881b5cb] | committer: Rémi Denis-Courmont

oldrc: fix format strings

Fix support for 32-bits platforms.
Regression from 46ea30cd17ef8a33eceac23fdd1c2506ad51c00c.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=318a2102eac854a68ab96cb646c386e0d881b5cb
---

 modules/control/oldrc.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/modules/control/oldrc.c b/modules/control/oldrc.c
index 458dab81b6..92d0d4b184 100644
--- a/modules/control/oldrc.c
+++ b/modules/control/oldrc.c
@@ -1051,7 +1051,7 @@ static int Input( vlc_object_t *p_this, char const *psz_cmd,
                 if (title != NULL)
                     chapter = vlc_player_GetSelectedChapterIdx(player);
                 if (chapter != -1)
-                    msg_rc("Currently playing chapter %ld/%ld.",
+                    msg_rc("Currently playing chapter %zd/%zu.",
                            chapter, title->chapter_count);
                 else
                     msg_rc("No chapter selected.");
@@ -1086,7 +1086,7 @@ static int Input( vlc_object_t *p_this, char const *psz_cmd,
                 if (titles != NULL)
                     count = vlc_player_title_list_GetCount(titles);
                 if (title != -1 && count != 0)
-                    msg_rc("Currently playing title %ld/%ld.", title, count);
+                    msg_rc("Currently playing title %zd/%zu.", title, count);
                 else
                     msg_rc("No title selected.");
             }
@@ -1133,7 +1133,7 @@ static int Input( vlc_object_t *p_this, char const *psz_cmd,
             {
                 struct vlc_player_track const *track =
                     vlc_player_GetTrackAt(player, cat, i);
-                msg_rc("| %"PRId64" - %s%s",
+                msg_rc("| %zu - %s%s",
                        i, track->name, track == cur_track ? " *" : "");
             }
             msg_rc("+----[ end of %s ]", name);
@@ -1284,8 +1284,8 @@ static int Playlist( vlc_object_t *p_this, char const *psz_cmd,
         else if (index < count)
             ret = vlc_playlist_PlayAt(playlist, index);
         else
-            msg_rc(vlc_ngettext("Playlist has only %lu element",
-                                "Playlist has only %lu elements", count),
+            msg_rc(vlc_ngettext("Playlist has only %zu element",
+                                "Playlist has only %zu elements", count),
                    count);
     }
     else if( !strcmp( psz_cmd, "stop" ) )



More information about the vlc-commits mailing list