Skip to content

Commit

Permalink
DAOS-14428 dfuse: Fix issue with command line thread-count checking. (d…
Browse files Browse the repository at this point in the history
…aos-stack#13399)

Make value signed so that comparison against zero works.

Signed-off-by: Ashley Pittman <[email protected]>
  • Loading branch information
ashleypittman authored Jan 25, 2024
1 parent 2a2e2f1 commit c5037da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/dfuse/dfuse.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ struct dfuse_info {
struct fuse_session *di_session;
char *di_group;
char *di_mountpoint;
uint32_t di_thread_count;
int32_t di_thread_count;
uint32_t di_eq_count;
bool di_threaded;
bool di_foreground;
Expand Down

0 comments on commit c5037da

Please sign in to comment.