summaryrefslogtreecommitdiff
path: root/test/sudoku.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2005-12-14 02:59:59 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2005-12-14 02:59:59 +0000
commit31d3e28bbabd47bd7312d0b1895312d42bed9c33 (patch)
tree3763e9b9270c36bd39423a8d7409533d0639d2b3 /test/sudoku.cxx
parent0e14d5ba183ec1fa7d894ca32110402c25532cdc (diff)
Use 0 instead of NULL in waveOutOpen() call...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4710 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test/sudoku.cxx')
-rw-r--r--test/sudoku.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sudoku.cxx b/test/sudoku.cxx
index 6cb271f56..d57bbceff 100644
--- a/test/sudoku.cxx
+++ b/test/sudoku.cxx
@@ -277,7 +277,7 @@ SudokuSound::SudokuSound() {
header_ptr->dwFlags = 0;
header_ptr->dwLoops = 0;
- if (waveOutOpen(&device, WAVE_MAPPER, &format, NULL, NULL, WAVE_ALLOWSYNC)
+ if (waveOutOpen(&device, WAVE_MAPPER, &format, 0, 0, WAVE_ALLOWSYNC)
!= MMSYSERR_NOERROR) return;
waveOutPrepareHeader(device, header_ptr, sizeof(WAVEHDR));