Re: [PATCH] vcs-svn/fast_export: fix timestamp fmt specifiers

2016-09-14 Thread Jeff King
On Wed, Sep 14, 2016 at 06:40:57AM +, Mike Ralphson wrote: > Two instances of %ld being used for unsigned longs Obviously this is an improvement, but I'm kind of surprised that compiler warnings didn't flag this. I couldn't find a "-W" combination that noticed, though (at least not with gcc

Re: [PATCH] vcs-svn/fast_export: fix timestamp fmt specifiers

2016-09-14 Thread Junio C Hamano
Mike Ralphson writes: > Two instances of %ld being used for unsigned longs. > > Signed-off-by: Mike Ralphson > --- Good eyes. Thanks for spotting. > vcs-svn/fast_export.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff

[PATCH] vcs-svn/fast_export: fix timestamp fmt specifiers

2016-09-14 Thread Mike Ralphson
Two instances of %ld being used for unsigned longs Signed-off-by: Mike Ralphson --- vcs-svn/fast_export.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vcs-svn/fast_export.c b/vcs-svn/fast_export.c index bd0f2c2..97cba39 100644 ---