Skip to content

Commit 335b78d

Browse files
committed
fix polarity of init_done flag. oops.
1 parent 1d7641c commit 335b78d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/shellchat/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ fn wrapped_main() -> ! {
439439
xous::Message::new_blocking_scalar(ShellOpcode::ForceRedraw.to_usize().unwrap(), 0, 0, 0, 0)
440440
).ok();
441441
let (no_retry_failure, count) = pddb::Pddb::new().try_mount();
442-
pddb_init_done.store(false, Ordering::SeqCst);
442+
pddb_init_done.store(true, Ordering::SeqCst);
443443
if no_retry_failure {
444444
// this includes both successfully mounted, and user abort of mount attempt
445445
break;

0 commit comments

Comments
 (0)