diff options
| author | Ian MacArthur <imacarthur@gmail.com> | 2010-05-03 20:06:22 +0000 |
|---|---|---|
| committer | Ian MacArthur <imacarthur@gmail.com> | 2010-05-03 20:06:22 +0000 |
| commit | ac33758e07214bb80776840cb42034fc14ae8a8c (patch) | |
| tree | a6de081c7082f73bc8f5c0ad3f377caaf5d4881b | |
| parent | f62fa4673699d84045dbd3be81b5d7b57da89c6c (diff) | |
Fix compile time warnings for params to fprintf that are no longer used.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7585 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | fluid/ide_visualc.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fluid/ide_visualc.cxx b/fluid/ide_visualc.cxx index b6a9905e4..dd77f18a4 100644 --- a/fluid/ide_visualc.cxx +++ b/fluid/ide_visualc.cxx @@ -340,12 +340,12 @@ public: fprintf(f, "# PROP BASE Use_MFC 0\r\n"); fprintf(f, "# PROP BASE Use_Debug_Libraries 1\r\n"); fprintf(f, "# PROP BASE Output_Dir \"Debug/$(ProjectName)\"\r\n"); - fprintf(f, "# PROP BASE Intermediate_Dir \"Debug/$(ProjectName)\"\r\n", name); + fprintf(f, "# PROP BASE Intermediate_Dir \"Debug/$(ProjectName)\"\r\n"); fprintf(f, "# PROP BASE Target_Dir \"\"\r\n"); fprintf(f, "# PROP Use_MFC 0\r\n"); fprintf(f, "# PROP Use_Debug_Libraries 1\r\n"); - fprintf(f, "# PROP Output_Dir \"Debug/$(ProjectName)\"\r\n", name); - fprintf(f, "# PROP Intermediate_Dir \"Debug/$(ProjectName)\"\r\n", name); + fprintf(f, "# PROP Output_Dir \"Debug/$(ProjectName)\"\r\n"); + fprintf(f, "# PROP Intermediate_Dir \"Debug/$(ProjectName)\"\r\n"); fprintf(f, "# PROP Ignore_Export_Lib 0\r\n"); fprintf(f, "# PROP Target_Dir \"\"\r\n"); fprintf(f, "# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D \"WIN32\" /D \"_DEBUG\" /D \"_WINDOWS\" /YX /FD /c\r\n"); |
