소스 검색

Removed \0 at end of format string in Timestamp().


git-svn-id: https://svn.microneil.com/svn/SNFClient/trunk@4 51592d22-3d51-405e-a108-f9da3ab4961f
adeniz_1
adeniz 15 년 전
부모
커밋
2780bac38a
2개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 4
    0
      SNFClient/ChangeLog
  2. 1
    1
      SNFClient/main.cpp

+ 4
- 0
SNFClient/ChangeLog 파일 보기

@@ -1,3 +1,7 @@
2009-05-26 Alban Deniz <adeniz@skidmark.localdomain>

* main.cpp (Timestamp): Removed \0 at end of format string.

2009-05-23 Alban Deniz <adeniz@skidmark.localdomain>

* Makefile.am (LIBS): Search SNFMulti library before CodeDweller.

+ 1
- 1
SNFClient/main.cpp 파일 보기

@@ -45,7 +45,7 @@ string Timestamp(time_t t) {
char TimestampBfr[20]; // Create a small buffer.
tm* gmt; // Get a ptr to a tm structure.
gmt = gmtime(&t); // Fill it with UTC.
sprintf(TimestampBfr,"%04d%02d%02d%02d%02d%02d\0", // Format yyyymmddhhmmss
sprintf(TimestampBfr,"%04d%02d%02d%02d%02d%02d", // Format yyyymmddhhmmss
gmt->tm_year+1900,
gmt->tm_mon+1,
gmt->tm_mday,

Loading…
취소
저장