diff options
author | Laurent Napias <[email protected]> | 2019-06-29 10:49:33 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-07-03 15:04:19 +0200 |
commit | d7195c1d58c93398efd3567ed69558b657e7b74b (patch) | |
tree | 2a37db47816a37eb01d95d5933de9c1e079ed599 /src/mp-serializer.c | |
parent | 87d647ad3be67c033dbb6aa80cfcdd4cbce3a42d (diff) | |
download | mate-calc-d7195c1d58c93398efd3567ed69558b657e7b74b.tar.bz2 mate-calc-d7195c1d58c93398efd3567ed69558b657e7b74b.tar.xz |
Remove trailing whitespaces
Diffstat (limited to 'src/mp-serializer.c')
-rw-r--r-- | src/mp-serializer.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mp-serializer.c b/src/mp-serializer.c index 413d844..4067016 100644 --- a/src/mp-serializer.c +++ b/src/mp-serializer.c @@ -1,7 +1,7 @@ /* * Copyright (C) 2010 Robin Sonefors * Copyright (C) 2008-2011 Robert Ancell. - * + * * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation, either version 2 of the License, or (at your option) any later @@ -263,7 +263,7 @@ mp_cast_to_exponential_string_real(MpSerializer *serializer, const MPNumber *x, fixed = mp_cast_to_string(serializer, &mantissa, n_digits); g_string_append(string, fixed); g_free(fixed); - + return exponent; } @@ -273,7 +273,7 @@ append_exponent(GString *string, int exponent) { const gchar *super_digits[] = {"⁰", "¹", "²", "³", "⁴", "⁵", "⁶", "⁷", "⁸", "⁹"}; gchar *super_value, *c; - + if (exponent == 0) return; @@ -593,7 +593,7 @@ mp_serializer_class_init(MpSerializerClass *klass) g_param_spec_int("base", "base", "Default number base", - 2, 16, 10, + 2, 16, 10, G_PARAM_READWRITE)); } |