diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/lzma.c | 2 | ||||
-rw-r--r-- | src/lib/timestamp.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/lzma.c b/src/lib/lzma.c index eecbb267d2..71c016ebcd 100644 --- a/src/lib/lzma.c +++ b/src/lib/lzma.c @@ -26,7 +26,7 @@ size_t ulzman(const void *src, size_t srcn, void *dst, size_t dstn) int res; CLzmaDecoderState state; SizeT mallocneeds; - MAYBE_STATIC unsigned char scratchpad[15980]; + MAYBE_STATIC_BSS unsigned char scratchpad[15980]; const unsigned char *cp; memcpy(properties, src, LZMA_PROPERTIES_SIZE); diff --git a/src/lib/timestamp.c b/src/lib/timestamp.c index 1319b86670..89152fd264 100644 --- a/src/lib/timestamp.c +++ b/src/lib/timestamp.c @@ -128,7 +128,7 @@ static int timestamp_should_run(void) static struct timestamp_table *timestamp_table_get(void) { - MAYBE_STATIC struct timestamp_table *ts_table = NULL; + MAYBE_STATIC_BSS struct timestamp_table *ts_table = NULL; struct timestamp_cache *ts_cache; if (ts_table != NULL) |