creport: fix a bunch of trivial errors

This commit is contained in:
Michael Scire 2018-06-25 10:25:14 -06:00
parent fc36429b99
commit 71e87e9e35

View file

@ -1,4 +1,5 @@
#include <cstdio> #include <cstdio>
#include <cstring>
#include <sys/stat.h> #include <sys/stat.h>
#include <sys/types.h> #include <sys/types.h>
#include <switch.h> #include <switch.h>
@ -30,7 +31,7 @@ void CrashReport::SaveReport() {
} }
/* Open report file. */ /* Open report file. */
snprintf(report_path, sizeof(report_path) - 1, "sdmc:/atmosphere/crash reports/%016lx_%016lx.log", timestamp, process_info.title_id), snprintf(report_path, sizeof(report_path) - 1, "sdmc:/atmosphere/crash reports/%016lx_%016lx.log", timestamp, process_info.title_id);
FILE *f_report = fopen(report_path, "w"); FILE *f_report = fopen(report_path, "w");
if (f_report == NULL) { if (f_report == NULL) {
return; return;
@ -214,7 +215,7 @@ bool CrashReport::IsAddressReadable(u64 address, u64 size, MemoryInfo *o_mi) {
return true; return true;
} }
bool GetCurrentTime(u64 *out) { bool CrashReport::GetCurrentTime(u64 *out) {
*out = 0; *out = 0;
/* Verify that pcv isn't dead. */ /* Verify that pcv isn't dead. */