Fix a bunch of pointer declarations (codestyle)
Essentially; s/type* /type */ as per the coding guidelines. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
75b44066f3
commit
4b25d091ba
@ -132,8 +132,8 @@ static int read_pack_info_file(const char *infofile)
|
||||
|
||||
static int compare_info(const void *a_, const void *b_)
|
||||
{
|
||||
struct pack_info * const* a = a_;
|
||||
struct pack_info * const* b = b_;
|
||||
struct pack_info *const *a = a_;
|
||||
struct pack_info *const *b = b_;
|
||||
|
||||
if (0 <= (*a)->old_num && 0 <= (*b)->old_num)
|
||||
/* Keep the order in the original */
|
||||
|
Reference in New Issue
Block a user