Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-08-31 05:07:55 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-08-31 05:07:55 +0400
commit471c005137540dd4c348c2f8e93146c0dff37a3f (patch)
tree8321e1ab728ee956b651514b4aef06c3eccb572d /intern
parent79249f8aede5c5481c625335b5ef7bd9b4cf28cc (diff)
typo fix: end of lines ;; --> ;
Diffstat (limited to 'intern')
-rw-r--r--intern/audaspace/intern/AUD_SoftwareDevice.cpp4
-rw-r--r--intern/ghost/intern/GHOST_Path-api.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/intern/audaspace/intern/AUD_SoftwareDevice.cpp b/intern/audaspace/intern/AUD_SoftwareDevice.cpp
index 496ad6992bc..0413c488b5d 100644
--- a/intern/audaspace/intern/AUD_SoftwareDevice.cpp
+++ b/intern/audaspace/intern/AUD_SoftwareDevice.cpp
@@ -516,7 +516,7 @@ bool AUD_SoftwareDevice::AUD_SoftwareHandle::setVolumeMaximum(float volume)
float AUD_SoftwareDevice::AUD_SoftwareHandle::getVolumeMinimum()
{
if(!m_status)
- return std::numeric_limits<float>::quiet_NaN();;
+ return std::numeric_limits<float>::quiet_NaN();
return m_volume_min;
}
@@ -634,7 +634,7 @@ bool AUD_SoftwareDevice::AUD_SoftwareHandle::setConeAngleInner(float angle)
float AUD_SoftwareDevice::AUD_SoftwareHandle::getConeVolumeOuter()
{
if(!m_status)
- return std::numeric_limits<float>::quiet_NaN();;
+ return std::numeric_limits<float>::quiet_NaN();
return m_cone_volume_outer;
}
diff --git a/intern/ghost/intern/GHOST_Path-api.cpp b/intern/ghost/intern/GHOST_Path-api.cpp
index dee66029d19..053eb7d03e8 100644
--- a/intern/ghost/intern/GHOST_Path-api.cpp
+++ b/intern/ghost/intern/GHOST_Path-api.cpp
@@ -39,7 +39,7 @@
GHOST_TSuccess GHOST_CreateSystemPaths(void)
{
- return GHOST_ISystemPaths::create();;
+ return GHOST_ISystemPaths::create();
}
GHOST_TSuccess GHOST_DisposeSystemPaths(void)