mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
Patch by Sylvain Petreolle:
'No newline at EOF' warning fix. svn path=/trunk/; revision=8245
This commit is contained in:
parent
9cff9f7701
commit
d0a5ab9948
6 changed files with 12 additions and 6 deletions
|
@ -71,3 +71,4 @@ private:
|
|||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -57,3 +57,4 @@ void Tnclip::Paste() {
|
|||
|
||||
CloseClipboard();
|
||||
}
|
||||
|
||||
|
|
|
@ -701,3 +701,4 @@ void TConfig::set_bool(bool *boolval, const char *str) {
|
|||
else if(!stricmp(str, "on")) *boolval = true;
|
||||
else *boolval = (bool)atoi(str);
|
||||
}
|
||||
|
||||
|
|
|
@ -89,3 +89,4 @@ void TNetwork::SetLocalAddress(char *buf) {
|
|||
local_address = new char[strlen(buf) + 1];
|
||||
strcpy(local_address, buf);
|
||||
}
|
||||
|
||||
|
|
|
@ -60,3 +60,4 @@ void TScript::initScript (char *filename) {
|
|||
if(fp) fclose(fp);
|
||||
fp = fopen(filename, "rt");
|
||||
}
|
||||
|
||||
|
|
|
@ -90,3 +90,4 @@
|
|||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue