Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 76d057b9 authored by Greg Hackmann's avatar Greg Hackmann Committed by Gerrit Code Review
Browse files

Merge "toolbox: fix x86 build"

parents 5eedd9d6 2122aac5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -273,7 +273,7 @@ procfile(const char *fn)
	return (c);
}

#define iswword(x)	(iswalnum((x)) || (x) == L'_')
#define iswword(x)	(iswalnum((wint_t)(x)) || (x) == L'_')

/*
 * Processes a line comparing it with the specified patterns.  Each pattern
@@ -323,7 +323,7 @@ procline(struct str *l, int nottext)
				continue;
			/* Check for whole word match */
			if (fg_pattern[i].word && pmatch.rm_so != 0) {
				wint_t wbegin, wend;
				wchar_t wbegin, wend;

				wbegin = wend = L' ';
				if (pmatch.rm_so != 0 &&