Author: gedmurphy
Date: Thu Aug 23 19:23:10 2007
New Revision: 28474
URL:
http://svn.reactos.org/svn/reactos?rev=28474&view=rev
Log:
add new file to rbuild file and fix gcc complaints
Modified:
trunk/reactos/base/applications/mscutils/servman/propsheet.c
trunk/reactos/base/applications/mscutils/servman/query.c
trunk/reactos/base/applications/mscutils/servman/servman.rbuild
Modified: trunk/reactos/base/applications/mscutils/servman/propsheet.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/servman/propsheet.c (original)
+++ trunk/reactos/base/applications/mscutils/servman/propsheet.c Thu Aug 23 19:23:10 2007
@@ -125,7 +125,7 @@
(LPARAM)Info->PropSheet->lpDisplayName);
/* set the description */
- if (Info->PropSheet->lpDescription =
GetDescription(Info->CurrentService->lpServiceName))
+ if ((Info->PropSheet->lpDescription =
GetDescription(Info->CurrentService->lpServiceName)))
{
SendDlgItemMessage(Info->PropSheet->hwndGenDlg,
IDC_DESCRIPTION,
@@ -135,7 +135,7 @@
}
/* set the executable path */
- if (Info->PropSheet->lpPathToExe = GetExecutablePath(Info))
+ if ((Info->PropSheet->lpPathToExe = GetExecutablePath(Info)))
{
SendDlgItemMessage(Info->PropSheet->hwndGenDlg,
IDC_EXEPATH,
Modified: trunk/reactos/base/applications/mscutils/servman/query.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/servman/query.c (original)
+++ trunk/reactos/base/applications/mscutils/servman/query.c Thu Aug 23 19:23:10 2007
@@ -153,7 +153,7 @@
lvItem.iItem = ListView_InsertItem(Info->hListView, &lvItem);
/* set the description */
- if (lpDescription =
GetDescription(Info->pServiceStatus[Index].lpServiceName))
+ if ((lpDescription =
GetDescription(Info->pServiceStatus[Index].lpServiceName)))
{
lvItem.pszText = lpDescription;
lvItem.iSubItem = 1;
Modified: trunk/reactos/base/applications/mscutils/servman/servman.rbuild
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/servman/servman.rbuild (original)
+++ trunk/reactos/base/applications/mscutils/servman/servman.rbuild Thu Aug 23 19:23:10
2007
@@ -25,6 +25,7 @@
<file>progress.c</file>
<file>propsheet.c</file>
<file>query.c</file>
+ <file>reg.c</file>
<file>servman.c</file>
<file>start.c</file>
<file>stop.c</file>