André Hentschel : services: Mention the unkown type in the error message.

Alexandre Julliard julliard at winehq.org
Tue Nov 2 11:10:54 CDT 2010


Module: wine
Branch: master
Commit: 7abdbe62d193cebca672dc6ad00a8ba81e933d42
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=7abdbe62d193cebca672dc6ad00a8ba81e933d42

Author: André Hentschel <nerv at dawncrow.de>
Date:   Mon Nov  1 21:57:23 2010 +0100

services: Mention the unkown type in the error message.

---

 programs/services/services.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/programs/services/services.c b/programs/services/services.c
index 1ecf30b..eab532f 100644
--- a/programs/services/services.c
+++ b/programs/services/services.c
@@ -329,7 +329,7 @@ BOOL validate_service_config(struct service_entry *entry)
         }
         break;
     default:
-        WINE_ERR("Service %s has an unknown service type\n", wine_dbgstr_w(entry->name));
+        WINE_ERR("Service %s has an unknown service type (0x%x)\n", wine_dbgstr_w(entry->name), entry->config.dwServiceType);
         return FALSE;
     }
 




More information about the wine-cvs mailing list