Changeset 481 in ntrip for trunk/ntripclient/NtripLinuxClient.c


Ignore:
Timestamp:
Aug 23, 2007, 8:55:36 AM (17 years ago)
Author:
stoecker
Message:

fixed minor typo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ntripclient/NtripLinuxClient.c

    r461 r481  
    11/*
    22  Easy example NTRIP client for Linux/Unix.
    3   $Id: NtripLinuxClient.c,v 1.26 2007/04/11 09:08:39 stoecker Exp $
     3  $Id: NtripLinuxClient.c,v 1.27 2007/05/16 14:16:21 stoecker Exp $
    44  Copyright (C) 2003-2005 by Dirk Stoecker <soft@dstoecker.de>
    55   
     
    4545
    4646/* CVS revision and version */
    47 static char revisionstr[] = "$Revision: 1.26 $";
    48 static char datestr[]     = "$Date: 2007/04/11 09:08:39 $";
     47static char revisionstr[] = "$Revision: 1.27 $";
     48static char datestr[]     = "$Date: 2007/05/16 14:16:21 $";
    4949
    5050struct Args
     
    376376      {
    377377        int j = snprintf(buf+i, MAXDATASIZE-i, "%s\r\n", args.nmea);
    378         if(j >= 0 && i < MAXDATASIZE-i)
     378        if(j >= 0 && j < MAXDATASIZE-i)
    379379          i += j;
    380380        else
Note: See TracChangeset for help on using the changeset viewer.