Skip to content

Commit 35e67fa

Browse files
committed
Fix C++03 build for overlay debug
1 parent 52ba3bb commit 35e67fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/terminal/parseraction.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ void ChWidthOverlay::act_on_terminal( Terminal::Emulator *emu ) const
109109
{
110110
std::ostringstream s;
111111
s << "/tmp/chwidth_overlay_" << getpid();
112-
std::ofstream f(s.str());
112+
std::ofstream f(s.str().c_str());
113113
f << overlay;
114114
}
115115
}

0 commit comments

Comments
 (0)