util: trim trailing space for files src/util/**/*

Using the following bash script doing that
```
cd src/util
find . -type f -print0 | xargs -0 -n1 sed -i 's/[ \t]*$//'
```

Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15093>
This commit is contained in:
Yonggang Luo 2022-03-18 13:14:55 +08:00 committed by Marge Bot
parent da82358a52
commit d9c3601e29
43 changed files with 338 additions and 338 deletions