Changeset 6175

Show
Ignore:
Timestamp:
2008-04-30 04:33:24 (3 months ago)
Author:
flynd
Message:

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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 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  {