[vtable] Fix warning for process in-condition assignment

This commit is contained in:
Teddy Reed 2014-10-03 17:47:24 -07:00
parent 79dc35e437
commit 2063252f73

View File

@ -87,7 +87,7 @@ QueryData genProcesses() {
PROCTAB* proc = openproc(PROC_SELECTS);
// Populate proc struc for each process.
while (proc_info = readproc(proc, NULL)) {
while ((proc_info = readproc(proc, NULL))) {
Row r;
r["pid"] = boost::lexical_cast<std::string>(proc_info->tid);