isync

mailbox synchronization program
git clone https://git.code.sf.net/p/isync/isync
Log | Files | Refs | README | LICENSE

commit b72800944c4b81024d30c5395de1ff4565273463
parent acfa3a2bbc0f4243096843d08671521ae2ad545f
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Sat,  5 Jan 2019 00:00:10 +0100

fix formatting of uint in callback debug stubs

amends bb632d1c.

Diffstat:
Msrc/drv_proxy_gen.pl | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/drv_proxy_gen.pl b/src/drv_proxy_gen.pl @@ -109,6 +109,7 @@ sub type_to_format($) { $_ = shift; s/xint /\%\#x/g; + s/uint /\%u/g; s/int /\%d/g; s/const char \*/\%s/g; return $_;