diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-04-20 15:20:22 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-23 06:56:33 -0300 |
commit | b8f3ff2a694f49b027b23d6afe218a6f2cb254c0 (patch) | |
tree | bf8ee0283dfc475dcb37fe20ee7c3e816ec2f8e7 /src/diff.c | |
parent | bf3b9d0ecbb16fc998c1c9656fd2ec235708ec55 (diff) | |
download | rneovim-b8f3ff2a694f49b027b23d6afe218a6f2cb254c0.tar.gz rneovim-b8f3ff2a694f49b027b23d6afe218a6f2cb254c0.tar.bz2 rneovim-b8f3ff2a694f49b027b23d6afe218a6f2cb254c0.zip |
Use portable format specifiers: Case %ld - localized - EMSGN.
Fix uses of localized "%ld" within EMSGN():
- Replace "%ld" with "%" PRId64.
- No argument cast needed. EMSGN() will take care of that.
Diffstat (limited to 'src/diff.c')
-rw-r--r-- | src/diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/diff.c b/src/diff.c index 5a21df2d0c..74e145f96c 100644 --- a/src/diff.c +++ b/src/diff.c @@ -142,7 +142,7 @@ void diff_buf_add(buf_T *buf) } } - EMSGN(_("E96: Can not diff more than %ld buffers"), DB_COUNT); + EMSGN(_("E96: Can not diff more than %" PRId64 " buffers"), DB_COUNT); } /// Find buffer "buf" in the list of diff buffers for the current tab page. |