Skip to content

Commit 4477026

Browse files
committed
Changed 17293 message to error message
1 parent e160644 commit 4477026

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/libltfs/ltfs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2560,7 +2560,7 @@ int ltfs_write_index(char partition, char *reason, struct ltfs_volume *vol)
25602560
diff = ((unsigned long long)physical_selfptr.block - (unsigned long long)current_position.block);
25612561
if (diff) {
25622562
/* Position mismatch, diff not equal zero */
2563-
ltfsmsg(LTFS_INFO, 17293I, (unsigned long long)physical_selfptr.block, (unsigned long long)current_position.block);
2563+
ltfsmsg(LTFS_INFO, 17293E, (unsigned long long)physical_selfptr.block, (unsigned long long)current_position.block);
25642564
return -1;
25652565
}
25662566

src/libltfs/tape.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1258,7 +1258,7 @@ ssize_t tape_write(struct device_data *dev, const char *buf, size_t count, bool
12581258
diff = ((unsigned long long)dev->position.block - (unsigned long long)current_position.block);
12591259
if (diff) {
12601260
/* Position mismatch, diff not equal zero */
1261-
ltfsmsg(LTFS_INFO, 17293I, (unsigned long long)dev->position.block, (unsigned long long)current_position.block);
1261+
ltfsmsg(LTFS_INFO, 17293E, (unsigned long long)dev->position.block, (unsigned long long)current_position.block);
12621262
return -LTFS_WRITE_ERROR;
12631263
}
12641264
}

0 commit comments

Comments
 (0)