Skip to content

Commit

Permalink
Rollback whitespace changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathieu Lê-Soum committed Nov 14, 2024
1 parent c47f5d2 commit 20093ec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/src/tester.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ void testerServiceCallback(const char *senderAgentName, const char *senderAgentU
printf(" )\n");
int64_t timestamp = igs_rt_get_current_timestamp();
if (timestamp != INT64_MIN)
printf("\twith timestamp %ld\n", timestamp);
printf("\twith timestamp %lld\n", timestamp);
if (autoTestsHaveStarted){
assert(token);
assert(streq(token, "token"));
Expand Down Expand Up @@ -364,7 +364,7 @@ void testerIOCallback(igs_io_type_t ioType, const char* name, igs_io_value_type_
}
int64_t timestamp = igs_rt_get_current_timestamp();
if (timestamp != INT64_MIN)
printf("\twith timestamp %ld\n", timestamp);
printf("\twith timestamp %lld\n", timestamp);
}


Expand Down Expand Up @@ -1908,7 +1908,7 @@ void set_timeCB(igs_io_type_t io_type,
// MAIN & OPTIONS & COMMAND INTERPRETER
//
int main(int argc, const char * argv[]) {

const char *t0 = "Ma classe étrange <(🦄)>";
char *t1 = strdup("Ma classe étrange <(🦄)>");
char *t2 = strdup("Ma classe étrange <(🦄)>\n");
Expand All @@ -1931,7 +1931,7 @@ int main(int argc, const char * argv[]) {
assert(model_clean_string(t7, INT64_MAX) && streq(t7, ""));
assert(model_clean_string(t8, INT64_MAX) && streq(t8, ""));
assert(model_clean_string(t9, strlen(t0)) && streq(t9, t0));

myData = calloc(32, sizeof(char));
myOtherData = calloc(64, sizeof(char));

Expand Down

0 comments on commit 20093ec

Please sign in to comment.