snprintf is not supported by VS.

This commit is contained in:
Cheng Zhao 2013-07-01 21:47:21 +08:00
parent 398c0a7c6a
commit 230173da1a

View file

@ -5,6 +5,7 @@
#include <string.h>
#include <stdio.h>
#include "base/string_util.h"
#include "vendor/node/src/node.h"
#include "vendor/node/src/node_version.h"
@ -35,10 +36,10 @@ node::node_module_struct* GetBuiltinModule(const char *name, bool is_browser) {
char common[128];
char spec[128];
node::node_module_struct *cur = NULL;
snprintf(common, sizeof(common), "atom_common_%s", name);
snprintf(spec, sizeof(spec),
(is_browser ? "atom_browser_%s": "atom_renderer_%s"),
name);
base::snprintf(common, sizeof(common), "atom_common_%s", name);
base::snprintf(spec, sizeof(spec),
(is_browser ? "atom_browser_%s": "atom_renderer_%s"),
name);
/* TODO: you could look these up in a hash, but there are only
* a few, and once loaded they are cached. */
for (int i = 0; node_module_list[i] != NULL; i++) {