aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/show-parse.c
diff options
authorLinus Torvalds <torvalds@home.transmeta.com>2003-06-02 11:09:16 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 21:00:48 -0700
commitfb494df61aedc2c7304f90cb3856f8fd3475abfb (patch)
tree0db9cd30be64382f722c8c704601568bc1e1064c /show-parse.c
parent96d59197279db28ec9c61ae95c83780b25d0fe96 (diff)
downloadsparse-dev-fb494df61aedc2c7304f90cb3856f8fd3475abfb.tar.gz
Fix type warning.
Diffstat (limited to 'show-parse.c')
-rw-r--r--show-parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/show-parse.c b/show-parse.c
index 897b0e67..cd01bccf 100644
--- a/show-parse.c
+++ b/show-parse.c
@@ -286,7 +286,7 @@ void show_symbol(struct symbol *sym)
return;
if (sym->ctype.alignment)
- printf(".align %d\n", sym->ctype.alignment);
+ printf(".align %ld\n", sym->ctype.alignment);
show_type(sym);
type = sym->ctype.base_type;