Skip to content

Commit

Permalink
fix wrong strlen
Browse files Browse the repository at this point in the history
  • Loading branch information
phillbush committed Apr 5, 2023
1 parent 4d4ab33 commit 70cea5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion widget.c
Original file line number Diff line number Diff line change
Expand Up @@ -1056,7 +1056,7 @@ settitle(Widget *widget)
8,
PropModeReplace,
(unsigned char *)widget->title,
strlen(title)
strlen(widget->title)
);
}

Expand Down

0 comments on commit 70cea5f

Please sign in to comment.