pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/sysutils/lxtask fix function prototype to match body i...
details: https://anonhg.NetBSD.org/pkgsrc/rev/4537b7f0d188
branches: trunk
changeset: 351232:4537b7f0d188
user: richard <richard%pkgsrc.org@localhost>
date: Wed Aug 17 15:19:42 2016 +0000
description:
fix function prototype to match body in order to avoid:
>xfce-taskmanager-linux.c:33:6: error: conflicting types for 'get_task_details'
> void get_task_details(pid_t pid,struct task *task)
> ^
>In file included from xfce-taskmanager-linux.c:30:0:
>xfce-taskmanager-linux.h:41:6: note: previous declaration of 'get_task_details' was here
> void get_task_details(gint pid,struct task *task);
> ^
diffstat:
sysutils/lxtask/distinfo | 3 ++-
sysutils/lxtask/patches/patch-src_xfce-taskmanager-linux.h | 14 ++++++++++++++
2 files changed, 16 insertions(+), 1 deletions(-)
diffs (30 lines):
diff -r f61f242234ca -r 4537b7f0d188 sysutils/lxtask/distinfo
--- a/sysutils/lxtask/distinfo Wed Aug 17 14:57:34 2016 +0000
+++ b/sysutils/lxtask/distinfo Wed Aug 17 15:19:42 2016 +0000
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.1 2016/05/23 10:50:35 youri Exp $
+$NetBSD: distinfo,v 1.2 2016/08/17 15:19:42 richard Exp $
SHA1 (lxtask-0.1.7.tar.xz) = 05a44a6bdd52674d5a465e50eacf71f217d1e66b
RMD160 (lxtask-0.1.7.tar.xz) = 020ed18849ca4fb719a2cfa538c5086d74d0c902
SHA512 (lxtask-0.1.7.tar.xz) = eb5c6af2d0953d09d62b53efda1f88140cc6d5734ef98effd9a72b896e397d0c29ff4263b93c12fd23fcb0ec129b31eb769b0a8c769ae92ed9fc1d2f2689a4ef
Size (lxtask-0.1.7.tar.xz) = 137152 bytes
+SHA1 (patch-src_xfce-taskmanager-linux.h) = 2f8c07e09af1a0d066d7306f6ac6ec67de94a7d6
diff -r f61f242234ca -r 4537b7f0d188 sysutils/lxtask/patches/patch-src_xfce-taskmanager-linux.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/lxtask/patches/patch-src_xfce-taskmanager-linux.h Wed Aug 17 15:19:42 2016 +0000
@@ -0,0 +1,14 @@
+$NetBSD: patch-src_xfce-taskmanager-linux.h,v 1.1 2016/08/17 15:19:42 richard Exp $
+fix declaration to be the same as the implementation.
+
+--- src/xfce-taskmanager-linux.h.orig 2014-09-16 12:27:52.000000000 +0000
++++ src/xfce-taskmanager-linux.h
+@@ -38,7 +38,7 @@
+ #define SIGNAL_CONT SIGCONT
+ #define SIGNAL_STOP SIGSTOP
+
+-void get_task_details(gint pid,struct task *task);
++void get_task_details(pid_t pid,struct task *task);
+ GArray *get_task_list(void);
+ gboolean get_system_status(system_status *sys_stat);
+ gboolean get_cpu_usage_from_proc(system_status *sys_stat);
Home |
Main Index |
Thread Index |
Old Index