diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-04-01 05:28:01 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-04-01 05:28:01 +0000 |
commit | 45f7cb601829cd50ac80677edf22d3c03e9b6327 (patch) | |
tree | 639823f0b45b5a525e2e96e30ce0899ecb12b108 /gcc/ada/cal.c | |
parent | 38b974a6cf4ea5e2ea107c63aa4c2b6d64a89894 (diff) | |
download | gcc-45f7cb601829cd50ac80677edf22d3c03e9b6327.zip gcc-45f7cb601829cd50ac80677edf22d3c03e9b6327.tar.gz gcc-45f7cb601829cd50ac80677edf22d3c03e9b6327.tar.bz2 |
adaint.c, [...]: Fix comment typos.
* adaint.c, cal.c, decl.c, gigi.h, gmem.c, init.c, link.c,
raise.c, tracebak.c, trans.c, utils2.c, utils.c: Fix comment
typos.
From-SVN: r97369
Diffstat (limited to 'gcc/ada/cal.c')
-rw-r--r-- | gcc/ada/cal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/cal.c b/gcc/ada/cal.c index 8f8930e..20a6316 100644 --- a/gcc/ada/cal.c +++ b/gcc/ada/cal.c @@ -31,7 +31,7 @@ ****************************************************************************/ /* This file contains those routines named by Import pragmas in package */ -/* GNAT.Calendar. It is used to to Duration to timeval convertion. */ +/* GNAT.Calendar. It is used to do Duration to timeval conversion. */ /* These are simple wrappers function to abstarct the fact that the C */ /* struct timeval fields type are not normalized (they are generaly */ /* defined as int or long values). */ @@ -75,7 +75,7 @@ __gnat_timeval_to_duration (struct timeval *t, long *sec, long *usec) void __gnat_duration_to_timeval (long sec, long usec, struct timeval *t) { - /* here we are doing implicit convertion from a long to the struct timeval + /* here we are doing implicit conversion from a long to the struct timeval fields types. */ t->tv_sec = sec; |