From f178221aff1d26834fc6c83b4b7836bd8b65142d Mon Sep 17 00:00:00 2001 From: Uwe Seimet Date: Wed, 15 Sep 2021 15:18:53 +0200 Subject: [PATCH] Error message update --- 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 ec990cca..812b61da 100644 --- a/src/raspberrypi/rascsi.cpp +++ b/src/raspberrypi/rascsi.cpp @@ -791,7 +791,7 @@ bool DeleteImage(int fd, const PbCommand& command) filepath.SetPath(filename.c_str()); if (FileSupport::GetIdsForReservedFile(filepath, id, unit)) { ostringstream msg; - msg << "Can't delete image file '" << filename << "', it is in use by device ID " << id << ", unit " << unit; + msg << "Can't delete image file '" << filename << "', it is used by device ID " << id << ", unit " << unit; return ReturnStatus(fd, false, msg.str()); }