diff options
author | Amarjargal Gundjalam <amarjargal16@gmail.com> | 2022-10-25 22:28:08 +0800 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2022-11-08 10:23:06 +0100 |
commit | ef99aa2a31d6189f9eb39114f1752b1b980c766b (patch) | |
tree | 851f792934a5150a128a8dd65bbbf0069c4981d0 /ui/vnc-enc-zywrle-template.c | |
parent | d3d1a406127f7da482eafbdc871c120c2770bb91 (diff) |
ui: fix tab indentation
The TABs should be replaced with spaces, to make sure that we have a
consistent coding style with an indentation of 4 spaces everywhere.
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/370
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Amarjargal Gundjalam <amarjargal16@gmail.com>
Message-Id: <9a0d0718aafaa52029fad76a149f3200b6bba0dd.1666707782.git.amarjargal16@gmail.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'ui/vnc-enc-zywrle-template.c')
-rw-r--r-- | ui/vnc-enc-zywrle-template.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ui/vnc-enc-zywrle-template.c b/ui/vnc-enc-zywrle-template.c index e9be55966e..4afa583e76 100644 --- a/ui/vnc-enc-zywrle-template.c +++ b/ui/vnc-enc-zywrle-template.c @@ -86,17 +86,17 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #undef L_2 #if ZYWRLE_ENDIAN == ENDIAN_BIG -# define S_0 1 -# define S_1 0 -# define L_0 3 -# define L_1 2 -# define L_2 1 +# define S_0 1 +# define S_1 0 +# define L_0 3 +# define L_1 2 +# define L_2 1 #else -# define S_0 0 -# define S_1 1 -# define L_0 0 -# define L_1 1 -# define L_2 2 +# define S_0 0 +# define S_1 1 +# define L_0 0 +# define L_1 1 +# define L_2 2 #endif #define ZYWRLE_QUANTIZE |