mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-14 04:26:12 +00:00
[lib/stream] small compile fix, use uint64_t, not u_int64_t.
2006-01-19 Paul Jakma <paul.jakma@sun.com> * stream.c: (stream_getq_from) should use POSIX uint64_t not u_int64_t. Latter is neither a traditional BSD type, nor a POSIX type.
This commit is contained in:
parent
e8e1946edf
commit
581a02a9f7
@ -1,3 +1,9 @@
|
||||
2006-01-19 Paul Jakma <paul.jakma@sun.com>
|
||||
|
||||
* stream.c: (stream_getq_from) should use POSIX uint64_t
|
||||
not u_int64_t. Latter is neither a traditional BSD type, nor
|
||||
a POSIX type.
|
||||
|
||||
2006-01-17 Vincent Jardin <vincent.jardin@6wind.com>
|
||||
|
||||
* md5.c: Don't forget to keep const.
|
||||
|
@ -383,7 +383,7 @@ stream_getl (struct stream *s)
|
||||
uint64_t
|
||||
stream_getq_from (struct stream *s, size_t from)
|
||||
{
|
||||
u_int64_t q;
|
||||
uint64_t q;
|
||||
|
||||
STREAM_VERIFY_SANE(s);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user