aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranklin Wei <me@fwei.tk>2018-04-18 18:12:06 -0400
committerFranklin Wei <franklin@rockbox.org>2020-12-07 19:27:19 -0500
commitcd9f68e69dc9e61ef5a9cc4602a0bc2811442656 (patch)
tree733a0e0f6b09a9085d72e8f8ba47321944826e8e
parent93de2db34ee5a2e6ea983597e28db396939d87df (diff)
downloadpuzzles-cd9f68e69dc9e61ef5a9cc4602a0bc2811442656.zip
puzzles-cd9f68e69dc9e61ef5a9cc4602a0bc2811442656.tar.gz
puzzles-cd9f68e69dc9e61ef5a9cc4602a0bc2811442656.tar.bz2
puzzles-cd9f68e69dc9e61ef5a9cc4602a0bc2811442656.tar.xz
Filling: disable printv() on Rockbox
-rw-r--r--filling.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/filling.c b/filling.c
index 3231384..6d9beb5 100644
--- a/filling.c
+++ b/filling.c
@@ -69,7 +69,7 @@
static bool verbose;
static void printv(const char *fmt, ...) {
-#ifndef PALM
+#if !defined(PALM) && !defined(ROCKBOX)
if (verbose) {
va_list va;
va_start(va, fmt);