Skip to content

Commit

Permalink
Fix QT programs for new POOLMEM world.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco van Wieringen committed Sep 23, 2015
1 parent 9b32454 commit f25feb4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/qt-console/restore/restore.cpp
Expand Up @@ -149,7 +149,7 @@ void restorePage::fillDirectory()
} else {
bstrncpy(marked, " ", sizeof(marked));
}
split_path_and_filename(p, &path, &pnl, &file, &fnl);
split_path_and_filename(p, path, &pnl, file, &fnl);
item.clear();
item << "" << file << modes << user << group << size << date;
if (item[1].endsWith("/")) {
Expand Down
2 changes: 1 addition & 1 deletion src/qt-tray-monitor/monitoritem.cpp
Expand Up @@ -47,7 +47,7 @@ char* MonitorItem::get_name() const
void MonitorItem::writecmd(const char* command)
{
if (d->DSock) {
d->DSock->msglen = pm_strcpy(&d->DSock->msg, command);
d->DSock->msglen = pm_strcpy(d->DSock->msg, command);
bnet_send(d->DSock);
}
}
Expand Down

0 comments on commit f25feb4

Please sign in to comment.