From b266029363fe2733815cd2c80267302a6eb1dd22 Mon Sep 17 00:00:00 2001 From: mazze Date: Sat, 21 Jan 2017 12:55:39 +0000 Subject: [PATCH] Buffer must be large enough to keep a LONG value. This fixes a segfault on i386 in an __sprintf() call. git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@53257 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- workbench/system/SysMon/sysmon_intern.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workbench/system/SysMon/sysmon_intern.h b/workbench/system/SysMon/sysmon_intern.h index 0b46d5569c..df2b9358fb 100644 --- a/workbench/system/SysMon/sysmon_intern.h +++ b/workbench/system/SysMon/sysmon_intern.h @@ -54,7 +54,7 @@ struct SysMonData TEXT bufname[100]; TEXT buftype[20]; - TEXT bufprio[8]; + TEXT bufprio[20]; ULONG updateSpeed; }; -- 2.11.4.GIT