* cosmetics

This commit is contained in:
Dirk-Jan C. Binnema
2011-04-30 13:52:17 +03:00
parent cec2a53265
commit a633475e1b
3 changed files with 14 additions and 2 deletions

View File

@ -500,7 +500,8 @@ get_message_uid (const char* path)
buf[0]=pfx;
}
strcpy (buf + 1, path);
std::strcpy (buf + 1, path);
return buf;
}
@ -612,6 +613,7 @@ mu_store_get_timestamp (MuStore *store, const char* msgpath)
rv = (time_t) g_ascii_strtoull (stampstr, NULL, 10);
g_free (stampstr);
return rv;
}