device_delete () Remove subdevices for eg. partitions
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 35s
Build documentation / build-and-deploy (push) Successful in 1m11s

This commit is contained in:
2026-04-07 21:55:37 +02:00
parent 7091b128df
commit 87ccdbc6cb
2 changed files with 29 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ static void usb_eject (const char* dev_key) {
if (strcmp (info->device_key, dev_key) == 0) {
int ret = volume_delete (info->volume_name);
mprintf ("Deleted volume %s: %s", info->volume_name, str_status[ret < 0 ? -ret : ret]);
mprintf ("Deleted volume %s: %s\n", info->volume_name, str_status[ret < 0 ? -ret : ret]);
break;
}
}