From 7f9d140d0d14d4cb9786df9c9147d9871a3e138c Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Fri, 19 Apr 2024 12:52:57 +0200 Subject: [PATCH] Small correction of commit 646d15a --- libisoburn/isofs_wrap.c | 2 +- xorriso/xorriso_timestamp.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libisoburn/isofs_wrap.c b/libisoburn/isofs_wrap.c index 058e5eb2..5e1a467b 100644 --- a/libisoburn/isofs_wrap.c +++ b/libisoburn/isofs_wrap.c @@ -137,7 +137,7 @@ int isoburn_get_attached_start_lba(struct burn_drive *d) off_t ret; ret= isoburn_get_attached_start_lba_v2(d); - if(ret >= 0 && ret < 0x7fffffff) + if(ret >= 0 && ret <= 0x7fffffff) return((int) ret); return(-1); } diff --git a/xorriso/xorriso_timestamp.h b/xorriso/xorriso_timestamp.h index 494f99f3..fed5903b 100644 --- a/xorriso/xorriso_timestamp.h +++ b/xorriso/xorriso_timestamp.h @@ -1 +1 @@ -#define Xorriso_timestamP "2024.04.03.161444" +#define Xorriso_timestamP "2024.04.19.105210"