diff options
author | Yonggang Luo <luoyonggang@gmail.com> | 2022-03-18 13:14:55 +0800 |
---|---|---|
committer | Marge Bot <emma+marge@anholt.net> | 2022-03-21 17:57:15 +0000 |
commit | d9c3601e29c4a1c3ddc2d2856927e1c45056c50e (patch) | |
tree | 16667301fdb32ffb29b98686da5c370284add1c9 /src/util/u_memory.h | |
parent | da82358a52c3a066dacbd06483e74eff437d7229 (diff) |
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>
Diffstat (limited to 'src/util/u_memory.h')
-rw-r--r-- | src/util/u_memory.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/util/u_memory.h b/src/util/u_memory.h index 621f70c57df..cff7b53ac57 100644 --- a/src/util/u_memory.h +++ b/src/util/u_memory.h @@ -1,8 +1,8 @@ /************************************************************************** - * + * * Copyright 2008 VMware, Inc. * All Rights Reserved. - * + * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including @@ -10,11 +10,11 @@ * distribute, sub license, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: - * + * * The above copyright notice and this permission notice (including the * next paragraph) shall be included in all copies or substantial portions * of the Software. - * + * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. @@ -22,7 +22,7 @@ * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * + * **************************************************************************/ |