From 05ae013fad66309df8f744280891b0a55efc8bc4 Mon Sep 17 00:00:00 2001 From: PhrAx <68938882+phrax0@users.noreply.github.com> Date: Sat, 12 Sep 2020 15:48:35 -0700 Subject: [PATCH] Update rascsi.cpp Changed "No device is installed." to "No images currently attached.". I think looking for currently attached images. The 'device' wording is confusing, even though it may be accurate. --- src/raspberrypi/rascsi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raspberrypi/rascsi.cpp b/src/raspberrypi/rascsi.cpp index 6e088dc8..e4e791b2 100644 --- a/src/raspberrypi/rascsi.cpp +++ b/src/raspberrypi/rascsi.cpp @@ -314,7 +314,7 @@ void ListDevice(FILE *fp) // If there is no controller, find will be null if (!find) { - FPRT(fp, "No device is installed.\n"); + FPRT(fp, "No images currently attached.\n"); return; }