浏览代码

Update rexm.c

pull/5170/head
Ray 1 个月前
父节点
当前提交
8116ebd9bb
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. +4
    -1
      tools/rexm/rexm.c

+ 4
- 1
tools/rexm/rexm.c 查看文件

@ -995,7 +995,10 @@ int main(int argc, char *argv[])
(strcmp(exInfo->authorGitHub, exInfoHeader->authorGitHub) != 0) ||
(exInfo->stars != exInfoHeader->stars) ||
(exInfo->verCreated != exInfoHeader->verCreated) ||
(exInfo->verUpdated != exInfoHeader->verUpdated)) exInfo->status |= VALID_INCONSISTENT_INFO;
(exInfo->verUpdated != exInfoHeader->verUpdated))
{
exInfo->status |= VALID_INCONSISTENT_INFO;
}
UnloadExampleInfo(exInfoHeader);
}

正在加载...
取消
保存