diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-08-19 21:44:32 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-08-19 21:44:32 (GMT) |
commit | 4611df2cb0d8774880347d591de4c17e28ba6560 (patch) | |
tree | e6c8c7a42b80eaaefe4781681f8a5bdea8bf50aa | |
parent | 191aa42940f163d85228f180e97f763f8cde82e6 (diff) | |
download | hdf5-4611df2cb0d8774880347d591de4c17e28ba6560.zip hdf5-4611df2cb0d8774880347d591de4c17e28ba6560.tar.gz hdf5-4611df2cb0d8774880347d591de4c17e28ba6560.tar.bz2 |
[svn-r27534] Changed some instances of snprintf to HDsnprintf.
Tested on: jam
-rw-r--r-- | src/H5AClog.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/H5AClog.c b/src/H5AClog.c index aaef674..1461738 100644 --- a/src/H5AClog.c +++ b/src/H5AClog.c @@ -109,7 +109,7 @@ H5AC__write_create_cache_log_msg(H5AC_t *cache) HDassert(cache->magic == H5C__H5C_T_MAGIC); /* Create the log message string */ - snprintf(msg, MSG_SIZE, + HDsnprintf(msg, MSG_SIZE, "\ {\n\ \"create_time\":%lld,\n\ @@ -164,7 +164,7 @@ H5AC__write_destroy_cache_log_msg(H5AC_t *cache) HDassert(cache->magic == H5C__H5C_T_MAGIC); /* Create the log message string */ - snprintf(msg, MSG_SIZE, + HDsnprintf(msg, MSG_SIZE, "\ ],\n\ \"close_time\":%lld,\n\ @@ -218,7 +218,7 @@ H5AC__write_evict_cache_log_msg(const H5AC_t *cache, HDassert(cache->magic == H5C__H5C_T_MAGIC); /* Create the log message string */ - snprintf(msg, MSG_SIZE, + HDsnprintf(msg, MSG_SIZE, "\ {\ \"timestamp\":%lld,\ @@ -264,7 +264,7 @@ H5AC__write_expunge_entry_log_msg(const H5AC_t *cache, HDassert(cache->magic == H5C__H5C_T_MAGIC); /* Create the log message string */ - snprintf(msg, MSG_SIZE, + HDsnprintf(msg, MSG_SIZE, "\ {\ \"timestamp\":%lld,\ @@ -311,7 +311,7 @@ H5AC__write_flush_cache_log_msg(const H5AC_t *cache, HDassert(cache->magic == H5C__H5C_T_MAGIC); /* Create the log message string */ - snprintf(msg, MSG_SIZE, + HDsnprintf(msg, MSG_SIZE, "\ {\ \"timestamp\":%lld,\ @@ -360,7 +360,7 @@ H5AC__write_insert_entry_log_msg(const H5AC_t *cache, /* Create the log message string */ - snprintf(msg, MSG_SIZE, + HDsnprintf(msg, MSG_SIZE, "\ {\ \"timestamp\":%lld,\ @@ -411,7 +411,7 @@ H5AC__write_mark_dirty_entry_log_msg(const H5AC_t *cache, HDassert(entry); /* Create the log message string */ - snprintf(msg, MSG_SIZE, + HDsnprintf(msg, MSG_SIZE, "\ {\ \"timestamp\":%lld,\ @@ -459,7 +459,7 @@ H5AC__write_move_entry_log_msg(const H5AC_t *cache, HDassert(cache->magic == H5C__H5C_T_MAGIC); /* Create the log message string */ - snprintf(msg, MSG_SIZE, + HDsnprintf(msg, MSG_SIZE, "\ {\ \"timestamp\":%lld,\ @@ -509,7 +509,7 @@ H5AC__write_pin_entry_log_msg(const H5AC_t *cache, HDassert(entry); /* Create the log message string */ - snprintf(msg, MSG_SIZE, + HDsnprintf(msg, MSG_SIZE, "\ {\ \"timestamp\":%lld,\ @@ -560,7 +560,7 @@ H5AC__write_create_fd_log_msg(const H5AC_t *cache, HDassert(child); /* Create the log message string */ - snprintf(msg, MSG_SIZE, + HDsnprintf(msg, MSG_SIZE, "\ {\ \"timestamp\":%lld,\ @@ -618,7 +618,7 @@ H5AC__write_protect_entry_log_msg(const H5AC_t *cache, HDstrcpy(rw_s, "UNKNOWN"); /* Create the log message string */ - snprintf(msg, MSG_SIZE, + HDsnprintf(msg, MSG_SIZE, "\ {\ \"timestamp\":%lld,\ @@ -669,7 +669,7 @@ H5AC__write_resize_entry_log_msg(const H5AC_t *cache, HDassert(entry); /* Create the log message string */ - snprintf(msg, MSG_SIZE, + HDsnprintf(msg, MSG_SIZE, "\ {\ \"timestamp\":%lld,\ @@ -718,7 +718,7 @@ H5AC__write_unpin_entry_log_msg(const H5AC_t *cache, HDassert(entry); /* Create the log message string */ - snprintf(msg, MSG_SIZE, + HDsnprintf(msg, MSG_SIZE, "\ {\ \"timestamp\":%lld,\ @@ -769,7 +769,7 @@ H5AC__write_destroy_fd_log_msg(const H5AC_t *cache, HDassert(child); /* Create the log message string */ - snprintf(msg, MSG_SIZE, + HDsnprintf(msg, MSG_SIZE, "\ {\ \"timestamp\":%lld,\ @@ -820,7 +820,7 @@ H5AC__write_unprotect_entry_log_msg(const H5AC_t *cache, HDassert(entry); /* Create the log message string */ - snprintf(msg, MSG_SIZE, + HDsnprintf(msg, MSG_SIZE, "\ {\ \"timestamp\":%lld,\ @@ -834,7 +834,7 @@ H5AC__write_unprotect_entry_log_msg(const H5AC_t *cache, , (long long)time(NULL), (unsigned long)entry->addr, type_id, flags, (int)fxn_ret_value); - snprintf(msg, MSG_SIZE, " "); + HDsnprintf(msg, MSG_SIZE, " "); /* Write the log message to the file */ if(H5C_write_log_message(cache, msg) < 0) @@ -872,7 +872,7 @@ H5AC__write_set_cache_config_log_msg(const H5AC_t *cache, HDassert(config); /* Create the log message string */ - snprintf(msg, MSG_SIZE, + HDsnprintf(msg, MSG_SIZE, "\ {\ \"timestamp\":%lld,\ |