The unified diff between revisions [056a532c..] and [bfc9e27f..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'log.c'

#
# old_revision [056a532c92301bcb224e1f786c5f6720e8acf3eb]
# new_revision [bfc9e27f5c40da31ae4269394aaf0545e5856a70]
#
# patch "log.c"
#  from [dd8755b026f0047b95fa77ca6906ef13a3bc42a1]
#    to [701a380256c80af1612dd9b69ef428e3e6155e3d]
#
============================================================
--- log.c	dd8755b026f0047b95fa77ca6906ef13a3bc42a1
+++ log.c	701a380256c80af1612dd9b69ef428e3e6155e3d
@@ -36,8 +36,10 @@ void log_put_byte(char c)
 	/* If the buffer is full, we just discard data.
 	 * Better than overrunning.
 	 */
-	if (((log_bufferend + 1) % LOG_BUFFERSIZE) == log_bufferstart)
+	if (((log_bufferend + 1) % LOG_BUFFERSIZE) == log_bufferstart) {
+		putstr("^");
 		return;
+	}
 	log_buffer[log_bufferend++] = c;
 	log_bufferend = log_bufferend % LOG_BUFFERSIZE;
 #if 0