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.
This commit is contained in:
PhrAx 2020-09-12 15:48:35 -07:00 committed by GitHub
parent 7c5b645c48
commit 05ae013fad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}