start at pos 7 to avoid a warn

This commit is contained in:
vaxerski 2022-12-03 23:40:08 +00:00
parent 2dc95fe02f
commit 37c76fd7d8
1 changed files with 2 additions and 2 deletions

View File

@ -388,8 +388,8 @@ struct xdpw_share xdpw_wlr_chooser(struct xdpw_screencast_context *ctx) {
return res;
} else if (strncmp(result, "region:", 7) == 0) {
// find output
int atPos = 0;
for (int i = 0; i < (int)strlen(result); ++i) {
int atPos = 7;
for (int i = 7; i < (int)strlen(result); ++i) {
if (result[i] == '@'){
atPos = i;
break;