| 1 |
------------------------------------------------------------------------
|
| 2 |
r878 | bobbybrasko | 2007-05-04 16:59:50 -0400 (Fri, 04 May 2007) | 12 lines
|
| 3 |
|
| 4 |
Reported bug fix.
|
| 5 |
|
| 6 |
Our automated buildd log filter[1] detected a problem that will cause
|
| 7 |
your package to segfault on architectures where the size of a pointer
|
| 8 |
is greater than the size of an integer, such as ia64 and amd64.
|
| 9 |
|
| 10 |
This is often due to a missing function prototype definition.
|
| 11 |
|
| 12 |
[1]http://people.debian.org/~dannf/check-implicit-pointer-functions
|
| 13 |
|
| 14 |
Function `cgdb_malloc' implicitly converted to pointer at kui_driver.c:122
|
| 15 |
|
| 16 |
------------------------------------------------------------------------
|
| 17 |
|
| 18 |
Index: cgdb/lib/kui/src/kui_driver.c
|
| 19 |
===================================================================
|
| 20 |
--- cgdb/lib/kui/src/kui_driver.c (revision 877)
|
| 21 |
+++ cgdb/lib/kui/src/kui_driver.c (revision 878)
|
| 22 |
@@ -51,6 +51,7 @@
|
| 23 |
#include <getopt.h>
|
| 24 |
#endif
|
| 25 |
|
| 26 |
+#include <sys_util.h>
|
| 27 |
#include "kui.h"
|
| 28 |
#include "kui_term.h"
|
| 29 |
|