diff options
author | Max Kellermann <max@duempel.org> | 2010-06-30 21:39:34 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-06-30 21:39:34 +0200 |
commit | 1bffdabe41471b994f43809d3ca18fd54ac8bf66 (patch) | |
tree | 460b04dc2ae02f59d7097c5b9ca03643f233551e /src/directory_print.h | |
parent | 77e6810c14e3b47f27a385e2fd9e8760710d0a99 (diff) | |
download | mpd-1bffdabe41471b994f43809d3ca18fd54ac8bf66.tar.gz mpd-1bffdabe41471b994f43809d3ca18fd54ac8bf66.tar.xz mpd-1bffdabe41471b994f43809d3ca18fd54ac8bf66.zip |
directory_print: return void
There is no useful return value here.
Diffstat (limited to '')
-rw-r--r-- | src/directory_print.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/directory_print.h b/src/directory_print.h index 6dd099241..7c0110502 100644 --- a/src/directory_print.h +++ b/src/directory_print.h @@ -23,7 +23,7 @@ struct client; struct directory; -int +void directory_print(struct client *client, const struct directory *directory); #endif |