Skip to content

Commit

Permalink
Update probe_modules.c
Browse files Browse the repository at this point in the history
Looks like there might be a regression from a fix introduced for issue FoxIO-LLC#6 , when I re-add ", const struct timespec ts)" to line 77, the cmake builds correctly. Without, it throws the same error mentioned in the initial issue publication.
  • Loading branch information
ryancmoon authored Jul 10, 2024
1 parent f3abb47 commit 07c96f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion probe_modules.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ void fs_add_ip_fields(fieldset_t *fs, struct ip *ip)

#define TIMESTR_LEN 55

void fs_add_system_fields(fieldset_t *fs, int is_repeat, int in_cooldown)
void fs_add_system_fields(fieldset_t *fs, int is_repeat, int in_cooldown, const struct timespec ts)
{
fs_add_bool(fs, "repeat", is_repeat);
fs_add_bool(fs, "cooldown", in_cooldown);
Expand Down

0 comments on commit 07c96f3

Please sign in to comment.