File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -377,16 +377,16 @@ void fossil_jellyfish_init(fossil_jellyfish_chain_t *chain) {
377377 memset (chain , 0 , sizeof (* chain ));
378378
379379 // Initialize non-zero or custom default fields for the chain
380- chain -> attributes .valid = 1 ; // Assume valid until proven otherwise
381- chain -> attributes .confidence = 1.0f ; // Default to max confidence
380+ chain -> memory . attributes .valid = 1 ; // Assume valid until proven otherwise
381+ chain -> memory . attributes .confidence = 1.0f ; // Default to max confidence
382382
383383 for (size_t i = 0 ; i < FOSSIL_JELLYFISH_MAX_MEM ; ++ i ) {
384384 fossil_jellyfish_block_t * b = & chain -> memory [i ];
385385
386386 // Reset block type and classification fields
387387 b -> block_type = JELLY_BLOCK_UNKNOWN ;
388- b -> attributes .valid = 1 ; // Assume valid until proven otherwise
389- b -> attributes .confidence = 1.0f ; // Default to max confidence
388+ b -> memory . attributes .valid = 1 ; // Assume valid until proven otherwise
389+ b -> memory . attributes .confidence = 1.0f ; // Default to max confidence
390390 }
391391}
392392
You can’t perform that action at this time.
0 commit comments