Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
47fc2642
Commit
47fc2642
authored
Jan 22, 2013
by
Philip Kelley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix gen_pktline format specifier for Win32
parent
fad251ae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
+3
-1
src/cc-compat.h
+2
-0
src/transports/smart_protocol.c
+1
-1
No files found.
src/cc-compat.h
View file @
47fc2642
...
...
@@ -38,8 +38,10 @@
/* Define the printf format specifer to use for size_t output */
#if defined(_MSC_VER) || defined(__MINGW32__)
# define PRIuZ "Iu"
# define PRIxZ "Ix"
#else
# define PRIuZ "zu"
# define PRIxZ "zx"
#endif
/* Micosoft Visual C/C++ */
...
...
src/transports/smart_protocol.c
View file @
47fc2642
...
...
@@ -541,7 +541,7 @@ static int gen_pktline(git_buf *buf, git_push *push)
git_oid_fmt
(
old_id
,
&
spec
->
roid
);
git_oid_fmt
(
new_id
,
&
spec
->
loid
);
git_buf_printf
(
buf
,
"%04
zx
%s %s %s"
,
len
,
old_id
,
new_id
,
spec
->
rref
);
git_buf_printf
(
buf
,
"%04
"
PRIxZ
"
%s %s %s"
,
len
,
old_id
,
new_id
,
spec
->
rref
);
if
(
i
==
0
)
{
git_buf_putc
(
buf
,
'\0'
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment