summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gpsd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gpsd.c b/gpsd.c
index d734f178..9f3b7ab0 100644
--- a/gpsd.c
+++ b/gpsd.c
@@ -1837,8 +1837,8 @@ static void adaptive_delay(void)
if (delay > (useconds_t) (500000UL/mightbuzz) )
delay = (useconds_t) (500000UL/mightbuzz);
#endif /* __UNUSED__ */
- gpsd_report(&context.errout, LOG_WARN,
- "select() bug found, sleeping for %u usec\n",delay);
+ gpsd_report(&context.errout, LOG_SPIN,
+ "adaptive delay, sleeping for %u usec\n",delay);
(void) usleep(delay);
}
return;