diff options
Diffstat (limited to 'mps/code')
| -rw-r--r-- | mps/code/misc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mps/code/misc.h b/mps/code/misc.h index b9e7b40bc14..c8b4d579a14 100644 --- a/mps/code/misc.h +++ b/mps/code/misc.h | |||
| @@ -52,14 +52,14 @@ enum { | |||
| 52 | typedef const struct SrcIdStruct *SrcId; | 52 | typedef const struct SrcIdStruct *SrcId; |
| 53 | typedef const struct SrcIdStruct { | 53 | typedef const struct SrcIdStruct { |
| 54 | const char *file; | 54 | const char *file; |
| 55 | const char *hopename; | 55 | const char *scmid; |
| 56 | const char *build_date; | 56 | const char *build_date; |
| 57 | const char *build_time; | 57 | const char *build_time; |
| 58 | } SrcIdStruct; | 58 | } SrcIdStruct; |
| 59 | 59 | ||
| 60 | #define SRCID(id, hopename) \ | 60 | #define SRCID(id, scmid) \ |
| 61 | static SrcIdStruct FileSrcIdStruct = \ | 61 | static SrcIdStruct FileSrcIdStruct = \ |
| 62 | {__FILE__, (hopename), __DATE__, __TIME__}; \ | 62 | {__FILE__, (scmid), __DATE__, __TIME__}; \ |
| 63 | SrcId id ## SrcId = &FileSrcIdStruct | 63 | SrcId id ## SrcId = &FileSrcIdStruct |
| 64 | 64 | ||
| 65 | 65 | ||