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.
This commit is contained in:
Eliseo Martínez
2014-04-20 15:20:22 +02:00
committed by Thiago de Arruda
parent bf3b9d0ecb
commit b8f3ff2a69
10 changed files with 19 additions and 19 deletions

View File

@@ -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.