Skip to content

Commit

Permalink
Replaced NULL with nullptr
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisn committed Nov 25, 2017
1 parent 48c3fa5 commit 8837b1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/host.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1173,7 +1173,7 @@ int host_find(int dorts) {
if (Accumulator) { // Open
idx=-1; // Look for free handle
for (lp=0; lp<=(VDFS_HANDMAX-VDFS_HANDMIN); lp++) {
if (handles[lp]==NULL) idx=lp;
if (handles[lp] == nullptr) idx=lp;
}
if (idx<0) return host_error(192, "Too many open files");
XYReg=XReg | (YReg<<8);
Expand Down

0 comments on commit 8837b1c

Please sign in to comment.