Skip to content

Commit 1fb5102

Browse files
committed
logging: use same spacing for all
1 parent bfc3936 commit 1fb5102

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/BlueSCSI_disk.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,7 @@ void scsiDiskLoadConfig(int target_idx)
850850
if (scsiDiskGetNextImageName(img, filename, sizeof(filename)))
851851
{
852852
int blocksize = getBlockSize(filename, target_idx, (img.deviceType == S2S_CFG_OPTICAL) ? 2048 : 512);
853-
log("-- Opening '", filename, "' for ID:", target_idx);
853+
log("-- Opening '", filename, "' for ID: ", target_idx);
854854
scsiDiskOpenHDDImage(target_idx, filename, target_idx, 0, blocksize);
855855
}
856856
}
@@ -872,7 +872,7 @@ bool switchNextImage(image_config_t &img, const char* next_filename)
872872

873873
if (filename[0] != '\0')
874874
{
875-
log("Switching to next image for ", target_idx, ": ", filename);
875+
log("Switching to next image for ID: ", target_idx, ": ", filename);
876876
img.file.close();
877877
int block_size = getBlockSize(filename, target_idx, (img.deviceType == S2S_CFG_OPTICAL) ? 2048 : 512);
878878
bool status = scsiDiskOpenHDDImage(target_idx, filename, target_idx, 0, block_size);

0 commit comments

Comments
 (0)