summaryrefslogtreecommitdiff
path: root/include/libast_internal.h
diff options
context:
space:
mode:
authorMichael Jennings <mej@kainx.org>2004-07-21 22:17:50 +0000
committerMichael Jennings <mej@kainx.org>2004-07-21 22:17:50 +0000
commit2d4808815472c63bbfa49bfd5d8b5f22b51ee232 (patch)
tree0eb31e0d3476e6ca141fd87173ad7d3395578d66 /include/libast_internal.h
parentbad139c9111100c83b169bd8ce1ae2cad8560567 (diff)
downloadlibast-2d4808815472c63bbfa49bfd5d8b5f22b51ee232.tar.gz
Wed Jul 21 18:16:43 2004 Michael Jennings (mej)
Mmmm, beefy. ---------------------------------------------------------------------- SVN revision: 10957
Diffstat (limited to 'include/libast_internal.h')
-rw-r--r--include/libast_internal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/libast_internal.h b/include/libast_internal.h
index 71b9aa8..e9b6021 100644
--- a/include/libast_internal.h
+++ b/include/libast_internal.h
@@ -91,9 +91,9 @@ typedef struct ptr_t_struct {
/** The pointer's size, in bytes. The pointer's size, in bytes. */
size_t size;
/** Filename. The file which last (re)allocated the pointer. */
- char file[LIBAST_FNAME_LEN + 1];
+ spif_char_t file[LIBAST_FNAME_LEN + 1];
/** Line number. The line number where the pointer was last (re)allocated. */
- unsigned long line;
+ spif_uint32_t line;
} ptr_t;
/**
* Pointer list structure.
@@ -107,7 +107,7 @@ typedef struct ptr_t_struct {
*/
typedef struct memrec_t_struct {
/** Pointer count. The number of pointers being tracked. */
- unsigned long cnt;
+ size_t cnt;
/** Pointer list. The list of tracked pointers. */
ptr_t *ptrs;
} memrec_t;