summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Stapelberg <michael@stapelberg.de>2012-05-07 08:27:28 +0200
committerMichael Stapelberg <michael@stapelberg.de>2012-05-07 08:28:04 +0200
commit4ddd115af8e6247788c78dc3630d37f2f4493e03 (patch)
tree4f73a046fcbcafb746bfa10e67be1995474602cc /src
parent6b447f7f1be3e53129756b51501f469e60820334 (diff)
Use (void) instead of () for functions without args (Thanks fernandotcl)
See also: http://article.gmane.org/gmane.linux.kernel/1268792 The C compiler will handle (void) as "no arguments" and () as "variadic function" (equivalent to (...)) which might lead to subtle errors.
Diffstat (limited to 'src')
-rw-r--r--src/auto_detect_format.c2
-rw-r--r--src/output.c4
-rw-r--r--src/print_ipv6_addr.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/auto_detect_format.c b/src/auto_detect_format.c
index 7c4d65d..46e5f95 100644
--- a/src/auto_detect_format.c
+++ b/src/auto_detect_format.c
@@ -29,7 +29,7 @@
* We then check whether the pipe target’s name is known and chose the format.
*
*/
-char *auto_detect_format() {
+char *auto_detect_format(void) {
pid_t myppid = getppid();
pid_t mypid = getpid();
diff --git a/src/output.c b/src/output.c
index c0c1480..c4a2d27 100644
--- a/src/output.c
+++ b/src/output.c
@@ -32,13 +32,13 @@ char *color(const char *colorstr) {
* Some color formats (xmobar) require to terminate colors again
*
*/
-char *endcolor() {
+char *endcolor(void) {
if (output_format == O_XMOBAR)
return "</fc>";
else return "";
}
-void print_seperator() {
+void print_seperator(void) {
if (output_format == O_DZEN2)
printf("^fg(%s)^p(5;-2)^ro(2)^p()^fg()^p(5)", cfg_getstr(cfg_general, "color_separator"));
else if (output_format == O_XMOBAR)
diff --git a/src/print_ipv6_addr.c b/src/print_ipv6_addr.c
index 21974f3..f987b59 100644
--- a/src/print_ipv6_addr.c
+++ b/src/print_ipv6_addr.c
@@ -64,7 +64,7 @@ static char *get_sockname(struct addrinfo *addr) {
* Returns the IPv6 address with which you have connectivity at the moment.
* The char * is statically allocated and mustn't be freed
*/
-static char *get_ipv6_addr() {
+static char *get_ipv6_addr(void) {
struct addrinfo hints;
struct addrinfo *result, *resp;
static struct addrinfo *cached = NULL;