Skip to content

Commit

Permalink
Fix #6017 - Pn projects notes ported to the new projects
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Nov 1, 2016
1 parent ab25516 commit 9a9dbbf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libr/core/project.c
Expand Up @@ -643,7 +643,8 @@ R_API char *r_core_project_notes_file (RCore *core, const char *file) {
char *notes_txt;
const char *prjdir = r_config_get (core->config, "dir.projects");
char *prjpath = r_file_abspath (prjdir);
notes_txt = r_str_newf ("%s"R_SYS_DIR"%s.d"R_SYS_DIR"notes.txt", prjpath, file);
// notes_txt = r_str_newf ("%s"R_SYS_DIR"%s.d"R_SYS_DIR"notes.txt", prjpath, file);
notes_txt = r_str_newf ("%s"R_SYS_DIR"%s"R_SYS_DIR"notes.txt", prjpath, file);
free (prjpath);
return notes_txt;
}
Expand Down

0 comments on commit 9a9dbbf

Please sign in to comment.