Skip to content

Commit

Permalink
rename definition variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Nariman committed May 27, 2024
1 parent 7735e59 commit 716a2a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dissect/thumbcache/c_thumbcache.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from dissect.cstruct import cstruct

c_thumbcache_index_def = """
thumbcache_index_def = """
struct INDEX_HEADER_V1 {
char Signature[4]; // 0x00
uint32 Version; // 0x04
Expand Down Expand Up @@ -75,4 +75,4 @@
uint32 Unknown; // 0x28
}; // 0x2C
"""
c_thumbcache_index = cstruct().load(c_thumbcache_index_def)
c_thumbcache_index = cstruct().load(thumbcache_index_def)

0 comments on commit 716a2a3

Please sign in to comment.