<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Subject: [floppymeter] Improve initial confirmation message
Author: Jari Aalto &lt;jari.aalto@cante.net&gt;
Bug-Debian: http://bugs.debian.org/306097
Bug-Debian: http://bugs.debian.org/298046
Last-Update: 2021-01-30
--- a/src/floppymeter.c
+++ b/src/floppymeter.c
@@ -155,8 +155,9 @@
 
 	if(!(mask &amp; NON_INTERACTIVE)) {
 		fprintf(stderr,
-			"Warning: all data contained on the floppy disk will be lost. Continue?\n");
+			"Warning: all data on the floppy disk will be lost. Continue (y/N)? ");
 		c=getchar();
+		fprintf(stderr, "\n");
 		if(c != 'y' &amp;&amp; c != 'Y')
 			exit(1);
 	}
</pre></body></html>