Skip to content

Commit

Permalink
testing styles
Browse files Browse the repository at this point in the history
  • Loading branch information
KarthikNayak committed Jul 7, 2024
1 parent 5354960 commit 3d0e820
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions fetch-pack.c
Original file line number Diff line number Diff line change
Expand Up @@ -1361,9 +1361,9 @@ static int send_fetch_request(struct fetch_negotiator *negotiator, int fd_out,

write_fetch_command_and_capabilities(&req_buf, args->server_options);

if (args->use_thin_pack)
if (args->use_thin_pack) {
packet_buf_write(&req_buf, "thin-pack");
if (args->no_progress)
} if (args->no_progress)
packet_buf_write(&req_buf, "no-progress");
if (args->include_tag)
packet_buf_write(&req_buf, "include-tag");
Expand Down
2 changes: 1 addition & 1 deletion trace.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
struct trace_key {
const char * const key;
int fd;
unsigned int initialized : 1;
unsigned int initialized : 1;
unsigned int need_close : 1;
};

Expand Down

0 comments on commit 3d0e820

Please sign in to comment.