Update hdd_image.c - hide the empty_sector_1m variable on Unix.

This commit is contained in:
Miran Grča
2025-06-28 22:29:05 +02:00
committed by GitHub
parent 91cf076c6f
commit 5ea9edd6a3

View File

@@ -56,7 +56,9 @@ typedef struct hdd_image_t {
hdd_image_t hdd_images[HDD_NUM];
static char empty_sector[512];
#ifndef __unix__
static char *empty_sector_1mb;
#endif
#ifdef ENABLE_HDD_IMAGE_LOG
int hdd_image_do_log = ENABLE_HDD_IMAGE_LOG;