aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/alsa.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/alsa.c
parent8092cd92058f3fa1ad42f8c46049c0bc39ae82ab (diff)
Remove hungarian notation from the device and context structs
Diffstat (limited to 'Alc/backends/alsa.c')
-rw-r--r--Alc/backends/alsa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/backends/alsa.c b/Alc/backends/alsa.c
index fa5ef1a6..8bd86be0 100644
--- a/Alc/backends/alsa.c
+++ b/Alc/backends/alsa.c
@@ -621,7 +621,7 @@ static ALCenum alsa_open_playback(ALCdevice *device, const ALCchar *deviceName)
return ALC_OUT_OF_MEMORY;
}
- device->szDeviceName = strdup(deviceName);
+ device->DeviceName = strdup(deviceName);
device->ExtraData = data;
return ALC_NO_ERROR;
}
@@ -986,7 +986,7 @@ static ALCenum alsa_open_capture(ALCdevice *pDevice, const ALCchar *deviceName)
}
}
- pDevice->szDeviceName = strdup(deviceName);
+ pDevice->DeviceName = strdup(deviceName);
pDevice->ExtraData = data;
return ALC_NO_ERROR;