diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2011-08-24 22:41:31 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-08-27 11:27:32 +0200 |
commit | 3d12d7de624c734112741bdbe55bcdf818df19ab (patch) | |
tree | 4fd20184f66c27e5ee7b971069c6696f32c9befb | |
parent | 87593f95d43e1e113d3ed55d2dc038e3f846cc30 (diff) | |
download | mpd-3d12d7de624c734112741bdbe55bcdf818df19ab.tar.gz mpd-3d12d7de624c734112741bdbe55bcdf818df19ab.tar.xz mpd-3d12d7de624c734112741bdbe55bcdf818df19ab.zip |
doc/developer.xml: change the coing style example return type to int
-rw-r--r-- | doc/developer.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/developer.xml b/doc/developer.xml index c63e2c265..010b85064 100644 --- a/doc/developer.xml +++ b/doc/developer.xml @@ -57,7 +57,7 @@ Some example code: </para> - <programlisting lang="C">static inline bool + <programlisting lang="C">static inline int foo(const char *abc, int xyz) { if (abc == NULL) { |