diff options
-rw-r--r-- | Ivy/IvyWatcher.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ivy/IvyWatcher.cxx b/Ivy/IvyWatcher.cxx index 8df0ac4..af19fe5 100644 --- a/Ivy/IvyWatcher.cxx +++ b/Ivy/IvyWatcher.cxx @@ -1,7 +1,7 @@ // IvyWatcher.cpp : implementation file
//
-#include "stdafx.h"
+#include "IvyStdAfx.h"
#include "IvyWatcher.h"
@@ -97,7 +97,7 @@ void IvyWatcher::start(const char *domainlist) string addr;
char hello[1024];
- int len = sprintf( hello, "%d %u\n", VERSION, bus->GetApplicationPort() );
+ int len = _snprintf( hello, sizeof(hello), "%d %u\n", VERSION, bus->GetApplicationPort() );
// send broadcast to domain list
while ( !domain.empty() )
|