Changeset 6175 for trunk/rms

Show
Ignore:
Timestamp:
04/30/08 04:33:24 (7 months ago)
Author:
flynd
Message:

Fixed some compiler warnings. Pointers to string constants should be declared const.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/rms/src/rms.cpp

    r6168 r6175  
    9898struct Command 
    9999{ 
    100   char *name; 
     100  const char *name; 
    101101  int (CRMSClient::*fcn)(); 
    102   char *help; 
     102  const char *help; 
    103103}; 
    104104 
     
    586586 
    587587  unsigned short nCode = 0; 
    588   char *szr = NULL; 
     588  const char *szr = NULL; 
    589589  switch(e->Result()) 
    590590  {