You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
In this snippet we can see that the allocation size is defined to be the size of what is under the dereferencing of fsm which means that it will be sizeof(struct raft_fsm).
The problem is that it is not the size of the struct we want to use, the correct size should be sizeof(Fsm), I am missing something?
In this snippet we can see that the allocation size is defined to be the size of what is under the dereferencing of
fsm
which means that it will besizeof(struct raft_fsm)
.The problem is that it is not the size of the struct we want to use, the correct size should be
sizeof(Fsm)
, I am missing something?raft/example/server.c
Lines 70 to 83 in 4d3de31
The text was updated successfully, but these errors were encountered: