mirror of
https://github.com/dankamongmen/notcurses
synced 2025-03-09 09:09:03 -04:00
[windows] chill out, PRIuPTR for size_t
This commit is contained in:
parent
ab6740758f
commit
ef53094e53
@ -5,7 +5,7 @@ name: debian-unstable
|
||||
|
||||
steps:
|
||||
- name: debian-build
|
||||
image: dankamongmen/unstable_builder:2021-11-06a
|
||||
image: dankamongmen/unstable_builder:2021-11-14a
|
||||
commands:
|
||||
- export LANG=en_US.UTF-8
|
||||
- export TERM=xterm
|
||||
@ -28,7 +28,7 @@ name: fedora-rawhide
|
||||
|
||||
steps:
|
||||
- name: fedora-rawhide
|
||||
image: dankamongmen/rawhide:2021-07-15a
|
||||
image: dankamongmen/rawhide:2021-11-14a
|
||||
commands:
|
||||
- export LANG=en_US.UTF-8
|
||||
- export TERM=xterm
|
||||
@ -52,7 +52,7 @@ name: ubuntu-jellyfish
|
||||
|
||||
steps:
|
||||
- name: ubuntu-build
|
||||
image: dankamongmen/impish:2021-08-19a
|
||||
image: dankamongmen/impish:2021-11-14b
|
||||
commands:
|
||||
- export LANG=es_ES.UTF-8
|
||||
- export TERM=xterm
|
||||
@ -74,7 +74,7 @@ name: alpine-edge
|
||||
|
||||
steps:
|
||||
- name: alpine-edge
|
||||
image: dankamongmen/edge_builder:2021-11-08a
|
||||
image: dankamongmen/edge_builder:2021-11-14a
|
||||
commands:
|
||||
- export LANG=en_US.UTF-8
|
||||
- export TERM=vt100
|
||||
|
@ -647,7 +647,7 @@ deflate_buf(void* buf, fbuf* f, int dimy, int dimx){
|
||||
if(0 == clen){ // wasn't enough room; compressed data is larger than original
|
||||
ret = encode_and_chunkify(f, buf, blen, 0);
|
||||
}else{
|
||||
loginfo("deflated %juB to %juB\n", (uintmax_t)blen, (uintmax_t)clen);
|
||||
loginfo("deflated %" PRIuPTR "B to %" PRIuPTR "B\n", blen, clen);
|
||||
ret = encode_and_chunkify(f, cbuf, clen, 1);
|
||||
}
|
||||
free(cbuf);
|
||||
|
Loading…
x
Reference in New Issue
Block a user