Skip to content

Commit

Permalink
Convert all uint32/16/8 to _t in a couple of include files.
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Sharpe <[email protected]>
Reviewed-by: Jeremy Allison <[email protected]>

Autobuild-User(master): Jeremy Allison <[email protected]>
Autobuild-Date(master): Tue May 12 04:22:55 CEST 2015 on sn-devel-104
  • Loading branch information
RichardSharpe authored and jrasamba committed May 12, 2015
1 parent f893a4a commit bc62dfa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source3/nmbd/nmbd_proto.h
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ struct server_record *create_server_on_workgroup(struct work_record *work,
int ttl, const char *comment);
void update_server_ttl(struct server_record *servrec, int ttl);
void expire_servers(struct work_record *work, time_t t);
void write_browse_list_entry(XFILE *fp, const char *name, uint32 rec_type,
void write_browse_list_entry(XFILE *fp, const char *name, uint32_t rec_type,
const char *local_master_browser_name, const char *description);
void write_browse_list(time_t t, bool force_write);

Expand Down
4 changes: 2 additions & 2 deletions source3/services/services.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ typedef struct {
/* structure to store the service handle information */

typedef struct _ServiceInfo {
uint8 type;
uint8_t type;
char *name;
uint32 access_granted;
uint32_t access_granted;
SERVICE_CONTROL_OPS *ops;
} SERVICE_INFO;

Expand Down

0 comments on commit bc62dfa

Please sign in to comment.