summaryrefslogtreecommitdiff
path: root/src/ui.h
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2014-04-22 11:44:54 +0200
committerLars-Dominik Braun <lars@6xq.net>2014-04-22 11:44:54 +0200
commit4d8ad7d87072bc1631d0b949930f4869e56b7b99 (patch)
tree304498a232ad457ff6937d94266e3a86c5d3eab5 /src/ui.h
parent274324aab47c51d6c07ace5e219d196077c3e5d1 (diff)
downloadpianobar-windows-4d8ad7d87072bc1631d0b949930f4869e56b7b99.tar.gz
pianobar-windows-4d8ad7d87072bc1631d0b949930f4869e56b7b99.tar.bz2
pianobar-windows-4d8ad7d87072bc1631d0b949930f4869e56b7b99.zip
Fix include guards
Macros starting with _ are reserved (see http://www.gnu.org/software/libc/manual/html_node/Reserved-Names.html). Fixes #440.
Diffstat (limited to 'src/ui.h')
-rw-r--r--src/ui.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui.h b/src/ui.h
index 6b5d891..96ad32f 100644
--- a/src/ui.h
+++ b/src/ui.h
@@ -21,8 +21,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
-#ifndef _UI_H
-#define _UI_H
+#ifndef SRC_UI_H_46P20TS0
+#define SRC_UI_H_46P20TS0
#include <stdbool.h>
@@ -55,4 +55,4 @@ int BarUiPianoCall (BarApp_t * const, PianoRequestType_t,
void *, PianoReturn_t *, WaitressReturn_t *);
void BarUiHistoryPrepend (BarApp_t *app, PianoSong_t *song);
-#endif /* _UI_H */
+#endif /* SRC_UI_H_46P20TS0 */