summaryrefslogtreecommitdiff
path: root/src/sdpd.h
diff options
context:
space:
mode:
authorSzymon Janc <szymon.janc@tieto.com>2011-05-04 11:28:57 +0200
committerJohan Hedberg <jh@dell.(none)>2011-05-15 01:47:05 +0300
commit3948fb1198bb7aefea995da09940432378965af9 (patch)
tree7d0c8554abad07ee5a5b770286cf113dc4e8817b /src/sdpd.h
parent0b9e64bed3db00188554aaac6251568892eedee1 (diff)
downloadbluez-3948fb1198bb7aefea995da09940432378965af9.tar.gz
Fix empty parameter list in functions declarations
Use foo(void) instead of foo() for parameterless functions declaration. This allows compiler to check if foo is called without parameters.
Diffstat (limited to 'src/sdpd.h')
-rw-r--r--src/sdpd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sdpd.h b/src/sdpd.h
index dc7a2560c..471e9ccd2 100644
--- a/src/sdpd.h
+++ b/src/sdpd.h
@@ -83,7 +83,7 @@ sdp_list_t *sdp_get_access_list(void);
int sdp_check_access(uint32_t handle, bdaddr_t *device);
uint32_t sdp_next_handle(void);
-uint32_t sdp_get_time();
+uint32_t sdp_get_time(void);
#define SDP_SERVER_COMPAT (1 << 0)
#define SDP_SERVER_MASTER (1 << 1)