aboutsummaryrefslogtreecommitdiffstats
path: root/powwow-muc.c
diff options
context:
space:
mode:
Diffstat (limited to 'powwow-muc.c')
-rw-r--r--powwow-muc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/powwow-muc.c b/powwow-muc.c
index c98547e..4f8ae18 100644
--- a/powwow-muc.c
+++ b/powwow-muc.c
@@ -82,8 +82,8 @@ int main( int argc, char *argv[] ) {
timeout( 0 );
looping = 1;
while( looping ) {
- bzero( line, 1000 );
- fgets( line, 1000, in );
+ memset( line, 0, sizeof line );
+ fgets( line, sizeof line, in );
/* get file pos */
new_pos = curr_pos = ftell( in );
@@ -284,7 +284,7 @@ int main( int argc, char *argv[] ) {
/* read to next newline so we don't break up
lines seeking around */
- fgets( line, 1000, in );
+ fgets( line, sizeof line, in );
new_pos = ftell( in );
/* Make a note of moving */