aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/pulseaudio.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/pulseaudio.c
parent8092cd92058f3fa1ad42f8c46049c0bc39ae82ab (diff)
Remove hungarian notation from the device and context structs
Diffstat (limited to 'Alc/backends/pulseaudio.c')
-rw-r--r--Alc/backends/pulseaudio.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Alc/backends/pulseaudio.c b/Alc/backends/pulseaudio.c
index 156f8ffd..e40419e3 100644
--- a/Alc/backends/pulseaudio.c
+++ b/Alc/backends/pulseaudio.c
@@ -525,8 +525,8 @@ static void sink_name_callback(pa_context *context, const pa_sink_info *info, in
return;
}
- free(device->szDeviceName);
- device->szDeviceName = strdup(info->description);
+ free(device->DeviceName);
+ device->DeviceName = strdup(info->description);
}
static void source_name_callback(pa_context *context, const pa_source_info *info, int eol, void *pdata)
@@ -541,8 +541,8 @@ static void source_name_callback(pa_context *context, const pa_source_info *info
return;
}
- free(device->szDeviceName);
- device->szDeviceName = strdup(info->description);
+ free(device->DeviceName);
+ device->DeviceName = strdup(info->description);
}