diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-29 22:53:31 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-05 05:51:51 +0900 |
commit | 95458404e12be506d6847baa7fbbf3aa8e709d60 (patch) | |
tree | 4b82269521927b9c6b8c8559eaff8129e79538f5 | |
parent | 718497d42d0511b6ad10880ea19863cb582c7daf (diff) |
ddb/db_aout.c: trivial stylistic fix for consistency
* ddb/db_aout.c: Trivial stylistic fix for consistency.
-rw-r--r-- | ddb/db_aout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ddb/db_aout.c b/ddb/db_aout.c index a36ca0e..5480325 100644 --- a/ddb/db_aout.c +++ b/ddb/db_aout.c @@ -500,7 +500,7 @@ aout_db_line_at_pc(stab, sym, file, line, pc) unsigned long diff; boolean_t found; - found = aout_db_search_by_addr(stab,(vm_offset_t)pc,file,&func,line,&diff); + found = aout_db_search_by_addr(stab, (vm_offset_t)pc, file, &func, line, &diff); return(found && func && *file); } |