0001-lib-ostree-sysroot-deploy-add-a-missing-include-for-stdint-h.patch 898 B

123456789101112131415161718192021222324
  1. From 4b7fc4f1e90bbeac89d2f939cde3070e69b4787a Mon Sep 17 00:00:00 2001
  2. From: Luca BRUNO <luca.bruno@coreos.com>
  3. Date: Fri, 6 May 2022 10:07:23 +0000
  4. Subject: [PATCH] lib/ostree-sysroot-deploy: add a missing include for stdint.h
  5. [Retrieved from:
  6. https://github.com/ostreedev/ostree/commit/4b7fc4f1e90bbeac89d2f939cde3070e69b4787a]
  7. Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  8. ---
  9. src/libostree/ostree-sysroot-deploy.c | 1 +
  10. 1 file changed, 1 insertion(+)
  11. diff --git a/src/libostree/ostree-sysroot-deploy.c b/src/libostree/ostree-sysroot-deploy.c
  12. index 404f336fb5..96cc07531e 100644
  13. --- a/src/libostree/ostree-sysroot-deploy.c
  14. +++ b/src/libostree/ostree-sysroot-deploy.c
  15. @@ -22,6 +22,7 @@
  16. #include <gio/gunixinputstream.h>
  17. #include <gio/gunixoutputstream.h>
  18. #include <glib-unix.h>
  19. +#include <stdint.h>
  20. #include <sys/mount.h>
  21. #include <sys/statvfs.h>
  22. #include <sys/socket.h>