From c455cdb30d212b6488d3e9f2f663fcc1f6ad267c Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Mon, 10 Dec 2018 14:26:04 +0100 Subject: choom: fix negative adjust score usage It's really bad idea to use uint64_t (ul_path_write_u64(()) when write signed number. Addresses: https://github.com/karelzak/util-linux/issues/723 Signed-off-by: Karel Zak --- include/path.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/path.h b/include/path.h index b34aa366e..8dadef1d0 100644 --- a/include/path.h +++ b/include/path.h @@ -110,6 +110,7 @@ int ul_path_write_string(struct path_cxt *pc, const char *str, const char *path) int ul_path_writef_string(struct path_cxt *pc, const char *str, const char *path, ...) __attribute__ ((__format__ (__printf__, 3, 4))); +int ul_path_write_s64(struct path_cxt *pc, int64_t num, const char *path); int ul_path_write_u64(struct path_cxt *pc, uint64_t num, const char *path); int ul_path_writef_u64(struct path_cxt *pc, uint64_t num, const char *path, ...) __attribute__ ((__format__ (__printf__, 3, 4))); -- cgit v1.2.3-55-g7522