diff options
author | hasso <hasso> | 2004-09-26 16:09:34 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-09-26 16:09:34 +0000 |
commit | c9e52be3f4d98943b67fbbe5d9a7ccd823b88326 (patch) | |
tree | d4045a946af3be8bbdc303162778e8c44057e2f9 /bgpd/bgp_aspath.c | |
parent | e473b032b860444b9656cee1654b0120f77b52b1 (diff) |
Compiler warnings fixes.
Diffstat (limited to 'bgpd/bgp_aspath.c')
-rw-r--r-- | bgpd/bgp_aspath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_aspath.c b/bgpd/bgp_aspath.c index d30ef4cc..bcb8f16f 100644 --- a/bgpd/bgp_aspath.c +++ b/bgpd/bgp_aspath.c @@ -136,7 +136,7 @@ aspath_make_str_count (struct aspath *as) struct assegment *assegment; int str_size = ASPATH_STR_DEFAULT_LEN; int str_pnt; - u_char *str_buf; + char *str_buf; int count = 0; /* Empty aspath. */ |