Make struct telstr members tel_type and tel_length unsigned

They are simpler to use that way.
This commit is contained in:
Markus Armbruster 2009-02-07 19:58:59 +01:00
parent d2cd46ce20
commit 4c81ca34cb
6 changed files with 23 additions and 26 deletions

View file

@ -49,8 +49,8 @@
struct telstr {
natid tel_from; /* sender */
signed char tel_type;
long tel_length; /* how long */
unsigned char tel_type;
unsigned tel_length; /* how long */
time_t tel_date; /* when sent */
};