<html>
    <head>
      <base href="https://bugs.freedesktop.org/" />
    </head>
    <body><span class="vcard"><a class="email" href="mailto:srivastava.d@samsung.com" title="DEEPAK SRIVASTAVA <srivastava.d@samsung.com>"> <span class="fn">DEEPAK SRIVASTAVA</span></a>
</span> changed
              <a class="bz_bug_link 
          bz_status_ASSIGNED "
   title="ASSIGNED - Please remove exclamation marks from messages"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=78563">bug 78563</a>
          <br>
             <table border="1" cellspacing="0" cellpadding="8">
          <tr>
            <th>What</th>
            <th>Removed</th>
            <th>Added</th>
          </tr>

         <tr>
           <td style="text-align:right;">Status</td>
           <td>NEW
           </td>
           <td>ASSIGNED
           </td>
         </tr>

         <tr>
           <td style="text-align:right;">Assignee</td>
           <td>pulseaudio-bugs@lists.freedesktop.org
           </td>
           <td>srivastava.d@samsung.com
           </td>
         </tr></table>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_ASSIGNED "
   title="ASSIGNED - Please remove exclamation marks from messages"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=78563#c1">Comment # 1</a>
              on <a class="bz_bug_link 
          bz_status_ASSIGNED "
   title="ASSIGNED - Please remove exclamation marks from messages"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=78563">bug 78563</a>
              from <span class="vcard"><a class="email" href="mailto:srivastava.d@samsung.com" title="DEEPAK SRIVASTAVA <srivastava.d@samsung.com>"> <span class="fn">DEEPAK SRIVASTAVA</span></a>
</span></b>
        <pre>Hello,
Please find the resolved patch at below link.
<a href="http://lists.freedesktop.org/archives/pulseaudio-discuss/2015-June/024084.html">http://lists.freedesktop.org/archives/pulseaudio-discuss/2015-June/024084.html</a>


Signed-off-by: Deepak Srivastava <srivastava.d at samsung.com>
---
 src/daemon/main.c              |   12 ++++++------
 src/modules/alsa/alsa-sink.c   |    2 +-
 src/modules/alsa/alsa-source.c |    2 +-
 src/utils/pacat.c              |    2 +-
 4 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/daemon/main.c b/src/daemon/main.c
index 82dec01..8137121 100644
--- a/src/daemon/main.c
+++ b/src/daemon/main.c
@@ -709,18 +709,18 @@ int main(int argc, char *argv[]) {
     }

     if (conf->system_instance && !conf->disallow_exit)
-        pa_log_warn(_("Running in system mode, but --disallow-exit not
set!"));
+        pa_log_warn(_("Running in system mode, but --disallow-exit not
set."));

     if (conf->system_instance && !conf->disallow_module_loading)
-        pa_log_warn(_("Running in system mode, but --disallow-module-loading
not set!"));
+        pa_log_warn(_("Running in system mode, but --disallow-module-loading
not set."));

     if (conf->system_instance && !conf->disable_shm) {
-        pa_log_notice(_("Running in system mode, forcibly disabling SHM
mode!"));
+        pa_log_notice(_("Running in system mode, forcibly disabling SHM
mode."));
         conf->disable_shm = true;
     }

     if (conf->system_instance && conf->exit_idle_time >= 0) {
-        pa_log_notice(_("Running in system mode, forcibly disabling exit idle
time!"));
+        pa_log_notice(_("Running in system mode, forcibly disabling exit idle
time."));
         conf->exit_idle_time = -1;
     }

@@ -998,9 +998,9 @@ int main(int argc, char *argv[]) {
     pa_disable_sigpipe();

     if (pa_rtclock_hrtimer())
-        pa_log_info("Fresh high-resolution timers available! Bon appetit!");
+        pa_log_info("Fresh high-resolution timers available! Bon appetit.");
     else
-        pa_log_info("Dude, your kernel stinks! The chef's recommendation today
is Linux with high-resolution timers enabled!");
+        pa_log_info("Dude, your kernel stinks! The chef's recommendation today
is Linux with high-resolution timers enabled.");

     if (conf->lock_memory) {
 #if defined(HAVE_SYS_MMAN_H) && !defined(__ANDROID__)
diff --git a/src/modules/alsa/alsa-sink.c b/src/modules/alsa/alsa-sink.c
index fb3c6cc..b6c7d09 100644
--- a/src/modules/alsa/alsa-sink.c
+++ b/src/modules/alsa/alsa-sink.c
@@ -567,7 +567,7 @@ static int mmap_write(struct userdata *u, pa_usec_t
*sleep_usec, bool polled, bo
             if (polled)
                 PA_ONCE_BEGIN {
                     char *dn = pa_alsa_get_driver_name_by_pcm(u->pcm_handle);
-                    pa_log(_("ALSA woke us up to write new data to the device,
but there was actually nothing to write!\n"
+                    pa_log(_("ALSA woke us up to write new data to the device,
but there was actually nothing to write.\n"
                              "Most likely this is a bug in the ALSA driver
'%s'. Please report this issue to the ALSA developers.\n"
                              "We were woken up with POLLOUT set -- however a
subsequent snd_pcm_avail() returned 0 or another value < min_avail."),
                            pa_strnull(dn));
diff --git a/src/modules/alsa/alsa-source.c b/src/modules/alsa/alsa-source.c
index 72c2f6e..d7d3eb5 100644
--- a/src/modules/alsa/alsa-source.c
+++ b/src/modules/alsa/alsa-source.c
@@ -526,7 +526,7 @@ static int mmap_read(struct userdata *u, pa_usec_t
*sleep_usec, bool polled, boo
             if (polled)
                 PA_ONCE_BEGIN {
                     char *dn = pa_alsa_get_driver_name_by_pcm(u->pcm_handle);
-                    pa_log(_("ALSA woke us up to read new data from the
device, but there was actually nothing to read!\n"
+                    pa_log(_("ALSA woke us up to read new data from the
device, but there was actually nothing to read.\n"
                              "Most likely this is a bug in the ALSA driver
'%s'. Please report this issue to the ALSA developers.\n"
                              "We were woken up with POLLIN set -- however a
subsequent snd_pcm_avail() returned 0 or another value < min_avail."),
                            pa_strnull(dn));
diff --git a/src/utils/pacat.c b/src/utils/pacat.c
index 1262241..2ded613 100644
--- a/src/utils/pacat.c
+++ b/src/utils/pacat.c
@@ -438,7 +438,7 @@ static void stream_event_callback(pa_stream *s, const char
*name, pa_proplist *p
             pa_operation_unref(pa_stream_cork(s, 0, NULL, NULL));
         }
         if (cork_requests == 0)
-            pa_log(_("Warning: Received more uncork requests than cork
requests!"));
+            pa_log(_("Warning: Received more uncork requests than cork
requests."));
         else
             cork_requests--;
     }
-- 
1.7.9.5</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the QA Contact for the bug.</li>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>