Patch by Sylvain Petreolle:
authorThomas Bluemel <thomas@reactsoft.com>
Wed, 18 Feb 2004 13:46:15 +0000 (13:46 +0000)
committerThomas Bluemel <thomas@reactsoft.com>
Wed, 18 Feb 2004 13:46:15 +0000 (13:46 +0000)
'No newline at EOF' warning fix.

svn path=/trunk/; revision=8245

rosapps/net/telnet/src/tnclass.h
rosapps/net/telnet/src/tnclip.cpp
rosapps/net/telnet/src/tnconfig.cpp
rosapps/net/telnet/src/tnetwork.cpp
rosapps/net/telnet/src/tscript.cpp
rosapps/winfile/format.h

index 0cad813..faab2bf 100644 (file)
@@ -70,4 +70,5 @@ private:
        void SetLocalAddress(SOCKET s);
 };
 
-#endif
\ No newline at end of file
+#endif
+
index 83fd5b3..d957d5a 100644 (file)
@@ -56,4 +56,5 @@ void Tnclip::Paste() {
        GlobalUnlock(clipboard_data);
        
        CloseClipboard();
-}
\ No newline at end of file
+}
+
index 71e007a..4440e97 100644 (file)
@@ -700,4 +700,5 @@ void TConfig::set_bool(bool *boolval, const char *str) {
    if(!stricmp(str, "true")) *boolval = true;
    else if(!stricmp(str, "on")) *boolval = true;
        else *boolval = (bool)atoi(str);
-}
\ No newline at end of file
+}
+
index 9fc0bbb..64eed9b 100644 (file)
@@ -88,4 +88,5 @@ void TNetwork::do_naws(int width, int height) {
 void TNetwork::SetLocalAddress(char *buf) {
        local_address = new char[strlen(buf) + 1];
        strcpy(local_address, buf);
-}
\ No newline at end of file
+}
+
index c813114..2045e43 100644 (file)
@@ -59,4 +59,5 @@ BOOL TScript::processScript (char* data) {
 void TScript::initScript (char *filename) {
        if(fp) fclose(fp);
        fp = fopen(filename, "rt");
-}
\ No newline at end of file
+}
+
index 2ea3ca7..9427b1b 100644 (file)
@@ -89,4 +89,5 @@
    #if defined (__cplusplus)
    }
    #endif
-   #endif
\ No newline at end of file
+   #endif
+