2017年9月30日土曜日

[未解決]gcc, c++のフォーマットWarning

warning: format not a string literal and no format arguments [-Wformat-security]

こういうWarningが出るのだけれど、解決できない。ロベール1-52部のファイル読み込みのところ。

#include <stdio.h>

int main()
{
    FILE* pFile;
    char  buffer[128];

    pFile = fopen("test.txt", "r");
    fgets(buffer, 128, pFile);
    printf(buffer);
    fclose(pFile);

    return 0;
}

0 件のコメント:

コメントを投稿