Skip to content

Commit adfcb65

Browse files
committed
fix: minor fix
1 parent f8e43f9 commit adfcb65

File tree

3 files changed

+1
-19
lines changed

3 files changed

+1
-19
lines changed

control

Lines changed: 0 additions & 9 deletions
This file was deleted.

launch_sensor.sh

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/storage_socket.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,7 @@ void timestamp_to_iso_date(unsigned long int timestamp, char * time_buffer, int
127127
time_buffer[len] = ((timestamp % 1000 - (timestamp % 100)) / 100) + 48;
128128
time_buffer[len + 1] = ((timestamp % 100 - (timestamp % 10)) / 10) + 48;
129129
time_buffer[len + 2] = (timestamp % 10) + 48;
130-
time_buffer[len + 3] = 'Z';
131-
time_buffer[len + 4] = '\0';
130+
time_buffer[len + 3] = '\0';
132131
}
133132

134133
static int

0 commit comments

Comments
 (0)