[R-gregmisc-users] SF.net SVN: r-gregmisc: [1220] trunk/SASxport
Brought to you by:
warnes
From: <wa...@us...> - 2007-11-05 15:25:42
|
Revision: 1220 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1220&view=rev Author: warnes Date: 2007-11-05 07:25:38 -0800 (Mon, 05 Nov 2007) Log Message: ----------- Remove extraneous ';' characters after function closing brace Modified Paths: -------------- trunk/SASxport/DESCRIPTION trunk/SASxport/inst/NEWS trunk/SASxport/src/writeSAS.c Modified: trunk/SASxport/DESCRIPTION =================================================================== --- trunk/SASxport/DESCRIPTION 2007-11-02 19:32:24 UTC (rev 1219) +++ trunk/SASxport/DESCRIPTION 2007-11-05 15:25:38 UTC (rev 1220) @@ -1,7 +1,7 @@ Package: SASxport Type: Package Title: Read and Write SAS XPORT Files -Version: 1.2.0 +Version: 1.2.1 Date: 2007-11-01 Description: This package provides functions for reading, listing the contents of, and writing SAS xport format files. Modified: trunk/SASxport/inst/NEWS =================================================================== --- trunk/SASxport/inst/NEWS 2007-11-02 19:32:24 UTC (rev 1219) +++ trunk/SASxport/inst/NEWS 2007-11-05 15:25:38 UTC (rev 1220) @@ -1,6 +1,15 @@ -Version 1.2.0 +Version 1.2.1 2007-11-05 ------------------------- +Other: + +- Correct warning message due to extraneous ';' charcters after + function closing braces. + + +Version 1.2.0 2007-11-01 +------------------------- + New Features: - SAS format and iformat information is now accessed via 'SASformat()' Modified: trunk/SASxport/src/writeSAS.c =================================================================== --- trunk/SASxport/src/writeSAS.c 2007-11-02 19:32:24 UTC (rev 1219) +++ trunk/SASxport/src/writeSAS.c 2007-11-05 15:25:38 UTC (rev 1220) @@ -184,7 +184,7 @@ raw_buffer_used = 320; return; -}; +} void fill_namestr_header( @@ -206,7 +206,7 @@ raw_buffer_used = 80; return; -}; +} void fill_namestr( int *isChar, /* Bool: Is this a character varible */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |