summaryrefslogtreecommitdiff
path: root/source3/services
diff options
context:
space:
mode:
authorRichard Sharpe <rsharpe@samba.org>2015-05-09 15:35:21 -0700
committerJeremy Allison <jra@samba.org>2015-05-12 04:22:55 +0200
commitbc62dfa493df8a554829900d6bd9686f0ca028b5 (patch)
tree26098dd12d2e4308b8751619cf4683a124eec8e3 /source3/services
parentf893a4a3547788eaf992d9f04ba380563b063971 (diff)
downloadsamba-bc62dfa493df8a554829900d6bd9686f0ca028b5.tar.gz
Convert all uint32/16/8 to _t in a couple of include files.
Signed-off-by: Richard Sharpe <rsharpe@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Tue May 12 04:22:55 CEST 2015 on sn-devel-104
Diffstat (limited to 'source3/services')
-rw-r--r--source3/services/services.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/services/services.h b/source3/services/services.h
index bbb1d60f168..f65eed1df6d 100644
--- a/source3/services/services.h
+++ b/source3/services/services.h
@@ -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;