Skip to content

Commit

Permalink
fix: minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
altor committed Apr 14, 2021
1 parent f8e43f9 commit adfcb65
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 19 deletions.
9 changes: 0 additions & 9 deletions control

This file was deleted.

8 changes: 0 additions & 8 deletions launch_sensor.sh

This file was deleted.

3 changes: 1 addition & 2 deletions src/storage_socket.c
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,7 @@ void timestamp_to_iso_date(unsigned long int timestamp, char * time_buffer, int
time_buffer[len] = ((timestamp % 1000 - (timestamp % 100)) / 100) + 48;
time_buffer[len + 1] = ((timestamp % 100 - (timestamp % 10)) / 10) + 48;
time_buffer[len + 2] = (timestamp % 10) + 48;
time_buffer[len + 3] = 'Z';
time_buffer[len + 4] = '\0';
time_buffer[len + 3] = '\0';
}

static int
Expand Down

0 comments on commit adfcb65

Please sign in to comment.