aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/portaudio.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-04-19 22:50:11 -0700
committerChris Robinson <[email protected]>2012-04-19 22:50:11 -0700
commitb023dbe7b87921a5b4eab0ed759e7b3dd04acf57 (patch)
tree1a222fbd4e317cfdd5811b6b2257b2c02abab39b /Alc/backends/portaudio.c
parent8092cd92058f3fa1ad42f8c46049c0bc39ae82ab (diff)
Remove hungarian notation from the device and context structs
Diffstat (limited to 'Alc/backends/portaudio.c')
-rw-r--r--Alc/backends/portaudio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/backends/portaudio.c b/Alc/backends/portaudio.c
index c4f80e1a..13c83cef 100644
--- a/Alc/backends/portaudio.c
+++ b/Alc/backends/portaudio.c
@@ -219,7 +219,7 @@ retry_open:
}
device->ExtraData = data;
- device->szDeviceName = strdup(deviceName);
+ device->DeviceName = strdup(deviceName);
return ALC_NO_ERROR;
}
@@ -361,7 +361,7 @@ static ALCenum pa_open_capture(ALCdevice *device, const ALCchar *deviceName)
goto error;
}
- device->szDeviceName = strdup(deviceName);
+ device->DeviceName = strdup(deviceName);
device->ExtraData = data;
return ALC_NO_ERROR;