mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-01 11:32:48 -05:00
Formatting: remove spurious spaces in 'type * var'.
I think a lot of these were inserted by a prior run through GNU indent many years ago. I noticed in a more recent experiment that that tool doesn't always correctly distinguish which instances of 'id * id' are pointer variable declarations and which are multiplications, so it spaces some of the former as if they were the latter.
This commit is contained in:
@ -53,9 +53,9 @@ typedef struct gss_channel_bindings_struct {
|
||||
gss_buffer_desc application_data;
|
||||
} *gss_channel_bindings_t;
|
||||
|
||||
typedef void * gss_ctx_id_t;
|
||||
typedef void * gss_name_t;
|
||||
typedef void * gss_cred_id_t;
|
||||
typedef void *gss_ctx_id_t;
|
||||
typedef void *gss_name_t;
|
||||
typedef void *gss_cred_id_t;
|
||||
|
||||
typedef OM_uint32 gss_qop_t;
|
||||
typedef int gss_cred_usage_t;
|
||||
|
@ -54,8 +54,8 @@ struct LZ77InternalContext;
|
||||
struct LZ77Context {
|
||||
struct LZ77InternalContext *ictx;
|
||||
void *userdata;
|
||||
void (*literal) (struct LZ77Context * ctx, unsigned char c);
|
||||
void (*match) (struct LZ77Context * ctx, int distance, int len);
|
||||
void (*literal) (struct LZ77Context *ctx, unsigned char c);
|
||||
void (*match) (struct LZ77Context *ctx, int distance, int len);
|
||||
};
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user