Author: dgorbachev
Date: Sat Mar 23 17:59:35 2013
New Revision: 58591
URL:
http://svn.reactos.org/svn/reactos?rev=58591&view=rev
Log:
[TOOLS]
Fix some compiler warnings, improve formatting, diagnostic messages.
Modified:
trunk/reactos/tools/geninc/geninc.c
trunk/reactos/tools/mkhive/reginf.c
trunk/reactos/tools/mkhive/registry.c
trunk/reactos/tools/mkshelllink/mkshelllink.c
trunk/reactos/tools/obj2bin/obj2bin.c
trunk/reactos/tools/rsym/rsym.c
Modified: trunk/reactos/tools/geninc/geninc.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/tools/geninc/geninc.c?rev=…
==============================================================================
--- trunk/reactos/tools/geninc/geninc.c [iso-8859-1] (original)
+++ trunk/reactos/tools/geninc/geninc.c [iso-8859-1] Sat Mar 23 17:59:35 2013
@@ -1,4 +1,6 @@
-
+/*
+ * Generates assembly definitions from the target headers.
+ */
#include <stdio.h>
#include <stdlib.h>
@@ -104,7 +106,7 @@
/* Verify the PE signature */
if (signature != 0x4550)
{
- fprintf(stderr, "Invalid signature: 0x%lx.\n", signature);
+ fprintf(stderr, "Invalid signature: 0x%x.\n", signature);
goto quit;
}
Modified: trunk/reactos/tools/mkhive/reginf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/tools/mkhive/reginf.c?rev=…
==============================================================================
--- trunk/reactos/tools/mkhive/reginf.c [iso-8859-1] (original)
+++ trunk/reactos/tools/mkhive/reginf.c [iso-8859-1] Sat Mar 23 17:59:35 2013
@@ -430,7 +430,7 @@
else
{
/* get flags */
- if (InfHostGetIntField (Context, 4, &Flags) != 0)
+ if (InfHostGetIntField (Context, 4, (INT *)&Flags) != 0)
Flags = 0;
}
Modified: trunk/reactos/tools/mkhive/registry.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/tools/mkhive/registry.c?re…
==============================================================================
--- trunk/reactos/tools/mkhive/registry.c [iso-8859-1] (original)
+++ trunk/reactos/tools/mkhive/registry.c [iso-8859-1] Sat Mar 23 17:59:35 2013
@@ -562,6 +562,8 @@
rc = RegQueryValueExW(hKey, lpValueNameW, lpReserved, lpType, lpData, lpcbData);
if (lpValueNameW)
free(lpValueNameW);
+ if (rc != ERROR_SUCCESS)
+ return rc;
return ERROR_UNSUCCESSFUL;
}
Modified: trunk/reactos/tools/mkshelllink/mkshelllink.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/tools/mkshelllink/mkshelll…
==============================================================================
--- trunk/reactos/tools/mkshelllink/mkshelllink.c [iso-8859-1] (original)
+++ trunk/reactos/tools/mkshelllink/mkshelllink.c [iso-8859-1] Sat Mar 23 17:59:35 2013
@@ -6,6 +6,7 @@
*/
#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#ifndef _MSC_VER
@@ -19,7 +20,8 @@
#define SW_SHOWNORMAL 1
#define SW_SHOWMINNOACTIVE 7
-typedef struct _GUID {
+typedef struct _GUID
+{
uint32_t Data1;
uint16_t Data2;
uint16_t Data3;
@@ -140,7 +142,7 @@
LNK_HEADER Header;
uint16_t uhTmp;
uint32_t dwTmp;
-
+
for (i = 1; i < argc; ++i)
{
if (argv[i][0] != '-' && argv[i][0] != '/')
@@ -166,8 +168,8 @@
else if (!strcmp(argv[i] + 1, "g") && i + 1 < argc)
{
unsigned Data4Tmp[8], j;
-
- sscanf(argv[++i], "{%8lx-%4hx-%4hx-%2x%2x-%2x%2x%2x%2x%2x%2x}",
+
+ sscanf(argv[++i], "{%8x-%4hx-%4hx-%2x%2x-%2x%2x%2x%2x%2x%2x}",
&Guid.Data1, &Guid.Data2, &Guid.Data3,
&Data4Tmp[0], &Data4Tmp[1], &Data4Tmp[2],
&Data4Tmp[3],
&Data4Tmp[4], &Data4Tmp[5], &Data4Tmp[6],
&Data4Tmp[7]);
@@ -177,7 +179,7 @@
else
printf("Invalid option: %s\n", argv[i]);
}
-
+
if (!pszTarget || bHelp)
{
printf("Usage: %s [-o path][-d descr][-w path][-c cmd_line_args][-i
icon_path [nr]][-h][-g guid] target\n"
@@ -191,14 +193,14 @@
"target\tAbsolute or relative to guid specified with -g option
path\n", argv[0]);
return 0;
}
-
+
pFile = fopen(pszOutputPath, "wb");
if (!pFile)
{
printf("Failed to open %s\n", pszOutputPath);
return -1;
}
-
+
// Header
memset(&Header, 0, sizeof(Header));
Header.Signature = (uint32_t)'L';
@@ -215,7 +217,7 @@
Header.IconNr = IconNr;
Header.Show = bMinimized ? SW_SHOWMINNOACTIVE : SW_SHOWNORMAL;
fwrite(&Header, sizeof(Header), 1, pFile);
-
+
if (Header.Flags & LINK_ID_LIST)
{
ID_LIST_FILE IdListFile;
@@ -223,12 +225,12 @@
ID_LIST_DRIVE IdListDrive;
unsigned cbListSize = sizeof(IdListGuid) + sizeof(uint16_t), cchName;
const char *pszName = pszTarget;
-
+
// ID list
// It seems explorer does not accept links without id list. List is relative to
desktop.
-
+
pszName = pszTarget;
-
+
if (pszName[0] && pszName[1] == ':')
{
cbListSize += sizeof(IdListDrive);
@@ -236,32 +238,32 @@
while (*pszName == '\\' || *pszName == '/')
++pszName;
}
-
+
while (*pszName)
{
cchName = 0;
while (pszName[cchName] && pszName[cchName] != '\\'
&& pszName[cchName] != '/')
++cchName;
-
+
if (cchName != 1 || pszName[0] != '.')
cbListSize += sizeof(IdListFile) + 2 * (cchName + 1);
-
+
pszName += cchName;
while (*pszName == '\\' || *pszName == '/')
++pszName;
}
-
+
uhTmp = cbListSize;
fwrite(&uhTmp, sizeof(uhTmp), 1, pFile); // size
-
+
IdListGuid.Size = sizeof(IdListGuid);
IdListGuid.Type = PT_GUID;
IdListGuid.dummy = 0x50;
IdListGuid.guid = Guid;
fwrite(&IdListGuid, sizeof(IdListGuid), 1, pFile);
-
+
pszName = pszTarget;
-
+
if (isalpha(pszName[0]) && pszName[1] == ':')
{
memset(&IdListDrive, 0, sizeof(IdListDrive));
@@ -273,13 +275,13 @@
while(*pszName == '\\' || *pszName == '/')
++pszName;
}
-
+
while (*pszName)
{
cchName = 0;
while (pszName[cchName] && pszName[cchName] != '\\'
&& pszName[cchName] != '/')
++cchName;
-
+
if (cchName != 1 || pszName[0] != '.')
{
memset(&IdListFile, 0, sizeof(IdListFile));
@@ -294,16 +296,16 @@
fwrite(pszName, cchName, 1, pFile);
fputc(0, pFile);
}
-
+
pszName += cchName;
while (*pszName == '\\' || *pszName == '/')
++pszName;
}
-
+
uhTmp = 0; // list end
fwrite(&uhTmp, sizeof(uhTmp), 1, pFile);
}
-
+
if (Header.Flags & LINK_DESCRIPTION)
{
// Dscription
@@ -311,7 +313,7 @@
fwrite(&uhTmp, sizeof(uhTmp), 1, pFile);
fputs(pszDescription, pFile);
}
-
+
if (Header.Flags & LINK_RELATIVE_PATH)
{
// Relative Path
@@ -319,7 +321,7 @@
fwrite(&uhTmp, sizeof(uhTmp), 1, pFile);
fputs(pszTarget, pFile);
}
-
+
if (Header.Flags & LINK_WORKING_DIR)
{
// Working Dir
@@ -327,7 +329,7 @@
fwrite(&uhTmp, sizeof(uhTmp), 1, pFile);
fputs(pszWorkingDir, pFile);
}
-
+
if (Header.Flags & LINK_CMD_LINE_ARGS)
{
// Command line arguments
@@ -335,7 +337,7 @@
fwrite(&uhTmp, sizeof(uhTmp), 1, pFile);
fputs(pszCmdLineArgs, pFile);
}
-
+
if (Header.Flags & LINK_ICON)
{
// Command line arguments
@@ -343,12 +345,12 @@
fwrite(&uhTmp, sizeof(uhTmp), 1, pFile);
fputs(pszIcon, pFile);
}
-
+
// Extra stuff
dwTmp = 0;
fwrite(&dwTmp, sizeof(dwTmp), 1, pFile);
-
+
fclose(pFile);
-
+
return 0;
}
Modified: trunk/reactos/tools/obj2bin/obj2bin.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/tools/obj2bin/obj2bin.c?re…
==============================================================================
--- trunk/reactos/tools/obj2bin/obj2bin.c [iso-8859-1] (original)
+++ trunk/reactos/tools/obj2bin/obj2bin.c [iso-8859-1] Sat Mar 23 17:59:35 2013
@@ -51,7 +51,7 @@
break;
default:
- printf("Unknown relocatation type %ld address %ld\n",
+ printf("Unknown relocatation type %d, address 0x%lx\n",
pReloc->Type, pReloc->VirtualAddress);
}
@@ -107,7 +107,7 @@
{
free(pData);
fclose(pSourceFile);
- fprintf(stderr, "Failed to read source file: %ld\n", nFileSize);
+ fprintf(stderr, "Failed to read %ld bytes from source file\n",
nFileSize);
return -4;
}
@@ -119,7 +119,7 @@
if (!pDestFile)
{
free(pData);
- fprintf(stderr, "Couldn't open dest file '%s'\n",
pszDestFile);
+ fprintf(stderr, "Couldn't open destination file '%s'\n",
pszDestFile);
return -5;
}
@@ -132,7 +132,7 @@
for (i = 0; i < pFileHeader->NumberOfSections; i++)
{
/* Check if this is '.text' section */
- if ((strcmp(pSectionHeader->Name, ".text") == 0) &&
+ if ((strcmp((char*)pSectionHeader->Name, ".text") == 0) &&
(pSectionHeader->SizeOfRawData != 0))
{
RelocateSection(pData,
@@ -146,7 +146,7 @@
{
free(pData);
fclose(pDestFile);
- fprintf(stderr, "Failed to write data %ld\n",
+ fprintf(stderr, "Failed to write %ld bytes to destination
file\n",
pSectionHeader->SizeOfRawData);
return -6;
}
@@ -162,4 +162,3 @@
return 0;
}
-
Modified: trunk/reactos/tools/rsym/rsym.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/tools/rsym/rsym.c?rev=5859…
==============================================================================
--- trunk/reactos/tools/rsym/rsym.c [iso-8859-1] (original)
+++ trunk/reactos/tools/rsym/rsym.c [iso-8859-1] Sat Mar 23 17:59:35 2013
@@ -60,7 +60,7 @@
for (Idx = 0; Idx < PEFileHeader->NumberOfSections; Idx++)
{
/* printf("section: '%.08s'\n", PESectionHeaders[Idx].Name); */
- if ((strncmp((char*)PESectionHeaders[Idx].Name, ".stab", 5) == 0)
+ if ((strncmp((char *) PESectionHeaders[Idx].Name, ".stab", 5) == 0)
&& (PESectionHeaders[Idx].Name[5] == 0))
{
/* printf(".stab section found. Size %d\n",
@@ -70,7 +70,7 @@
*StabSymbolsBase = (void *)((char *) FileData +
PESectionHeaders[Idx].PointerToRawData);
}
- if (strncmp((char*)PESectionHeaders[Idx].Name, ".stabstr", 8) == 0)
+ if (strncmp((char *) PESectionHeaders[Idx].Name, ".stabstr", 8) == 0)
{
/* printf(".stabstr section found. Size %d\n",
PESectionHeaders[Idx].SizeOfRawData); */
@@ -528,7 +528,7 @@
if ((0 == StartOfRawData
|| InSectionHeaders[Section].PointerToRawData < StartOfRawData)
&& 0 != InSectionHeaders[Section].PointerToRawData
- && 0 != (strncmp(InSectionHeaders[Section].Name, ".stab",
5)))
+ && 0 != (strncmp((char *) InSectionHeaders[Section].Name,
".stab", 5)))
{
StartOfRawData = InSectionHeaders[Section].PointerToRawData;
}
@@ -580,7 +580,7 @@
OutRelocSection = NULL;
for (Section = 0; Section < InFileHeader->NumberOfSections; Section++)
{
- if (0 != (strncmp(InSectionHeaders[Section].Name, ".stab", 5)))
+ if (0 != (strncmp((char *) InSectionHeaders[Section].Name, ".stab", 5)))
{
*CurrentSectionHeader = InSectionHeaders[Section];
CurrentSectionHeader->PointerToLinenumbers = 0;