aboutsummaryrefslogtreecommitdiff
path: root/apps/systemlib/conversions.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/systemlib/conversions.c')
-rw-r--r--apps/systemlib/conversions.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/systemlib/conversions.c b/apps/systemlib/conversions.c
index 99ee41508..9105d83cb 100644
--- a/apps/systemlib/conversions.c
+++ b/apps/systemlib/conversions.c
@@ -45,13 +45,13 @@
int16_t
int16_t_from_bytes(uint8_t bytes[])
{
- union {
- uint8_t b[2];
- int16_t w;
- } u;
+ union {
+ uint8_t b[2];
+ int16_t w;
+ } u;
- u.b[1] = bytes[0];
- u.b[0] = bytes[1];
+ u.b[1] = bytes[0];
+ u.b[0] = bytes[1];
- return u.w;
+ return u.w;
}