Skip to content

Commit

Permalink
Add the missing includes for GUnixFDList
Browse files Browse the repository at this point in the history
  • Loading branch information
hughsie committed Jul 30, 2023
1 parent e2bf95e commit 85af889
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions libpassim/passim-client.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

#include "config.h"

#include <gio/gunixfdlist.h>

#include "passim-client.h"

/**
Expand Down
2 changes: 1 addition & 1 deletion libpassim/passim-item.c
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ passim_compute_checksum_for_filename(const gchar *filename, GError **error)
return g_compute_checksum_for_data(G_CHECKSUM_SHA256, (const guchar *)buf, bufsz);
}

#if !GLIB_CHECK_VERSION(2,70,0)
#if !GLIB_CHECK_VERSION(2, 70, 0)
static GDateTime *
g_file_info_get_creation_date_time(GFileInfo *info)
{
Expand Down
1 change: 1 addition & 0 deletions src/passim-server.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

#include "config.h"

#include <gio/gunixfdlist.h>
#include <gio/gunixinputstream.h>
#include <passim.h>

Expand Down

0 comments on commit 85af889

Please sign in to comment.