Skip to content

Commit

Permalink
Pass NULL as empty argument
Browse files Browse the repository at this point in the history
  • Loading branch information
jvlcek committed Sep 23, 2024
1 parent 9e27339 commit 84272c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/daemons/rhsmcertd.c
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ static gboolean
initial_cert_check (gpointer data)
{
struct CertCheckData *cert_data = data;
cert_check (data);
cert_check (NULL);
// Add the timeout to begin waiting on interval but offset by the initial
// delay.
g_timeout_add (cert_data->interval_seconds * 1000,
Expand Down

0 comments on commit 84272c3

Please sign in to comment.