IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 7950


Ignore:
Timestamp:
Jul 20, 2006, 4:39:33 PM (20 years ago)
Author:
drobbin
Message:

changed char *line to psString line

Location:
trunk/psLib/src/sys
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sys/psLine.c

    r7901 r7950  
    2424    line->Nline = 0;
    2525    line->NLINE = Nline;
    26     line->line = psAlloc(Nline);
     26    //    line->line = psAlloc(Nline);
     27    line->line = psStringAlloc(Nline);
    2728
    2829    return line;
  • trunk/psLib/src/sys/psLine.h

    r7901 r7950  
    1111 *  @author David Robbins, MHPCC
    1212 *
    13  *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2006-07-14 02:26:25 $
     13 *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2006-07-21 02:39:33 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1919#ifndef PS_LINE_H
    2020#define PS_LINE_H
     21
     22#include "psString.h"
    2123
    2224/** @addtogroup SysUtils
     
    2931    long NLINE;                        ///< allocated length
    3032    long Nline;                        ///< current length
    31     char *line;                        ///< character string data
     33    psString line;                     ///< character string data
    3234}
    3335psLine;
Note: See TracChangeset for help on using the changeset viewer.