From ddebbf1b6010a624b7abf5ade26d4e0831d31e9d Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Mon, 26 Feb 2024 15:57:18 +0100 Subject: [PATCH] Bug fix: burn_offst_source_new() parameter "size" rolled over at 2 exp 31 --- cdrskin/cdrskin_timestamp.h | 2 +- libburn/file.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cdrskin/cdrskin_timestamp.h b/cdrskin/cdrskin_timestamp.h index 746916f..a66080c 100644 --- a/cdrskin/cdrskin_timestamp.h +++ b/cdrskin/cdrskin_timestamp.h @@ -1 +1 @@ -#define Cdrskin_timestamP "2023.09.12.132011" +#define Cdrskin_timestamP "2024.02.26.145623" diff --git a/libburn/file.h b/libburn/file.h index 03d6797..8de68f6 100644 --- a/libburn/file.h +++ b/libburn/file.h @@ -88,7 +88,7 @@ struct burn_source_offst { int size_adjustable; /* for set_size/get_size */ - int nominal_size; + off_t nominal_size; /* To help offst_free() */ struct burn_source *next;